Add esp cvar

This commit is contained in:
8dcc 2023-07-21 15:49:01 +02:00
parent 77a8a97a0f
commit 24c1d796d9
2 changed files with 3 additions and 0 deletions

View File

@ -4,9 +4,11 @@
#include "include/globals.h"
DECL_CVAR(bhop);
DECL_CVAR(esp);
bool cvars_init(void) {
cv_bhop = REGISTER_CVAR("bhop", "1");
cv_esp = REGISTER_CVAR("esp", "1");
return true;
}

View File

@ -30,6 +30,7 @@
/*----------------------------------------------------------------------------*/
DECL_CVAR_EXTERN(bhop);
DECL_CVAR_EXTERN(esp);
/*----------------------------------------------------------------------------*/