9141ae103e
--HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40165
18 lines
385 B
C++
18 lines
385 B
C++
#ifndef _INCLUDE_SOURCEMOD_GLOBALHEADER_H_
|
|
#define _INCLUDE_SOURCEMOD_GLOBALHEADER_H_
|
|
|
|
#include "sm_globals.h"
|
|
|
|
class SourceModBase
|
|
{
|
|
public:
|
|
/**
|
|
* @brief Initializes SourceMod, or returns an error on failure.
|
|
*/
|
|
bool InitializeSourceMod(char *error, size_t err_max, bool late);
|
|
};
|
|
|
|
extern SourceModBase g_SourceMod;
|
|
|
|
#endif //_INCLUDE_SOURCEMOD_GLOBALHEADER_H_
|