Add esp cvar
This commit is contained in:
parent
77a8a97a0f
commit
24c1d796d9
|
@ -4,9 +4,11 @@
|
||||||
#include "include/globals.h"
|
#include "include/globals.h"
|
||||||
|
|
||||||
DECL_CVAR(bhop);
|
DECL_CVAR(bhop);
|
||||||
|
DECL_CVAR(esp);
|
||||||
|
|
||||||
bool cvars_init(void) {
|
bool cvars_init(void) {
|
||||||
cv_bhop = REGISTER_CVAR("bhop", "1");
|
cv_bhop = REGISTER_CVAR("bhop", "1");
|
||||||
|
cv_esp = REGISTER_CVAR("esp", "1");
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,6 +30,7 @@
|
||||||
/*----------------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------------*/
|
||||||
|
|
||||||
DECL_CVAR_EXTERN(bhop);
|
DECL_CVAR_EXTERN(bhop);
|
||||||
|
DECL_CVAR_EXTERN(esp);
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue