16 lines
368 B
C
16 lines
368 B
C
|
#ifndef _INCLUDE_SOURCEMOD_GLOBALS_H_
|
||
|
#define _INCLUDE_SOURCEMOD_GLOBALS_H_
|
||
|
|
||
|
#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_
|