2006-11-08 08:32:44 +01:00
|
|
|
#ifndef _INCLUDE_SOURCEMOD_GLOBALS_H_
|
|
|
|
#define _INCLUDE_SOURCEMOD_GLOBALS_H_
|
|
|
|
|
2006-11-08 08:44:26 +01:00
|
|
|
/**
|
|
|
|
* @file Contains global headers that most files in SourceMod will need.
|
|
|
|
*/
|
|
|
|
|
2006-11-08 08:32:44 +01:00
|
|
|
#include <sp_vm_types.h>
|
|
|
|
#include <sp_vm_api.h>
|
|
|
|
#include "sm_platform.h"
|
|
|
|
#include "interfaces/IShareSys.h"
|
|
|
|
|
|
|
|
using namespace SourcePawn;
|
|
|
|
using namespace SourceMod;
|
|
|
|
|
|
|
|
extern ISourcePawnEngine *g_pSourcePawn;
|
|
|
|
extern IVirtualMachine *g_pVM;
|
|
|
|
|
|
|
|
#endif //_INCLUDE_SOURCEMOD_GLOBALS_H_
|