mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-02-02 18:14:26 +00:00
16 lines
299 B
C
16 lines
299 B
C
#ifndef ENTTOOLS_H
|
|
#define ENTTOOLS_H
|
|
|
|
extern cvar_t mp_enttools_maxfire;
|
|
extern cvar_t mp_enttools_enable;
|
|
bool Ent_ProcessClientCommand( edict_t *player );
|
|
void ENT_RegisterCVars( void );
|
|
|
|
struct EntoolsEntData {
|
|
bool enttools; // created by enttools
|
|
char ownerid[33];
|
|
};
|
|
|
|
#endif // ENTTOOLS_H
|
|
|