diff --git a/src/cvars.c b/src/cvars.c new file mode 100644 index 0000000..8f56c15 --- /dev/null +++ b/src/cvars.c @@ -0,0 +1,12 @@ + +#include "include/cvars.h" +#include "include/sdk.h" +#include "include/globals.h" + +DECL_CVAR(bhop); + +bool cvars_init(void) { + cv_bhop = REGISTER_CVAR("bhop", "1"); + + return true; +}