2006-12-17 10:59:01 +01:00
|
|
|
#ifndef _INCLUDE_SOURCEMOD_SERVERCOMMANDS_H_
|
|
|
|
#define _INCLUDE_SOURCEMOD_SERVERCOMMANDS_H_
|
|
|
|
|
2006-12-16 03:16:21 +01:00
|
|
|
#include "sourcemod.h"
|
|
|
|
#include "PluginSys.h"
|
2006-12-17 10:59:01 +01:00
|
|
|
#include "sourcemm_api.h"
|
|
|
|
#include <convar.h>
|
2006-12-16 03:16:21 +01:00
|
|
|
|
|
|
|
using namespace SourceMod;
|
|
|
|
|
|
|
|
class ConVarAccessor :
|
|
|
|
public IConCommandBaseAccessor,
|
|
|
|
public SMGlobalClass
|
|
|
|
{
|
|
|
|
public: // IConCommandBaseAccessor
|
|
|
|
virtual bool RegisterConCommandBase(ConCommandBase *pCommand);
|
|
|
|
public: // SMGlobalClass
|
|
|
|
virtual void OnSourceModStartup(bool late);
|
2006-12-17 10:59:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //_INCLUDE_SOURCEMOD_SERVERCOMMANDS_H_
|