f55a7a5663
--HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40167
22 lines
473 B
C++
22 lines
473 B
C++
#ifndef _INCLUDE_SOURCEMOD_GLOBALHEADER_H_
|
|
#define _INCLUDE_SOURCEMOD_GLOBALHEADER_H_
|
|
|
|
#include "sm_globals.h"
|
|
|
|
/**
|
|
* @brief Implements SourceMod's global overall management, API, and logic
|
|
*/
|
|
|
|
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_
|