7af40128a3
Fixed include order and double include prevention --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40228
22 lines
533 B
C++
22 lines
533 B
C++
#ifndef _INCLUDE_SOURCEMOD_SERVERCOMMANDS_H_
|
|
#define _INCLUDE_SOURCEMOD_SERVERCOMMANDS_H_
|
|
|
|
#include "sourcemod.h"
|
|
#include "PluginSys.h"
|
|
#include "sourcemm_api.h"
|
|
#include <convar.h>
|
|
|
|
using namespace SourceMod;
|
|
|
|
class ConVarAccessor :
|
|
public IConCommandBaseAccessor,
|
|
public SMGlobalClass
|
|
{
|
|
public: // IConCommandBaseAccessor
|
|
virtual bool RegisterConCommandBase(ConCommandBase *pCommand);
|
|
public: // SMGlobalClass
|
|
virtual void OnSourceModStartup(bool late);
|
|
};
|
|
|
|
#endif //_INCLUDE_SOURCEMOD_SERVERCOMMANDS_H_
|