mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-26 06:45:37 +03:00
1cdb12c4e4
Anyway it will be needed later when client cvar query function is implemented.
14 lines
329 B
C
Executable File
14 lines
329 B
C
Executable File
#ifndef _NEWDLLFUNC_INCLUDE_H
|
|
#define _NEWDLLFUNC_INCLUDE_H
|
|
|
|
#include "fakemeta_amxx.h"
|
|
|
|
enum {
|
|
NEWDLLFunc_OnFreeEntPrivateData, // void ) (edict_t *pEnt);
|
|
NEWDLLFunc_GameShutdown, // void ) (void);
|
|
NEWDLLFunc_ShouldCollide // int ) (edict_t *pentTouched, edict_t *pentOther);
|
|
};
|
|
|
|
#endif //_NEWDLLFUNC_INCLUDE_H
|
|
|