amxmodx/dlls/engine/gpglobals.h
2004-05-26 05:15:40 +00:00

53 lines
782 B
C
Executable File

#ifndef _INCLUDE_ENGINE_GLOBAL
#define _INCLUDE_ENGINE_GLOBAL
#include "engine.h"
enum globals {
// Edict
GL_trace_ent = 0,
// Float
GL_coop,
GL_deathmatch,
GL_force_retouch,
GL_found_secrets,
GL_frametime,
GL_serverflags,
GL_teamplay,
GL_time,
GL_trace_allsolid,
GL_trace_fraction,
GL_trace_inopen,
GL_trace_inwater,
GL_trace_plane_dist,
GL_trace_startsolid,
// Int
GL_cdAudioTrack,
GL_maxClients,
GL_maxEntities,
GL_msg_entity,
GL_trace_flags,
GL_trace_hitgroup,
// String
GL_pStringBase,
GL_mapname,
GL_startspot,
// Vector
GL_trace_endpos,
GL_trace_plane_normal,
GL_v_forward,
GL_v_right,
GL_v_up,
GL_vecLandmarkOffset,
// Void (not supported)
GL_pSaveData
};
extern AMX_NATIVE_INFO global_Natives[];
#endif //_INCLUDE_ENGINE_GLOBAL