Add cvars.c source with cv_bhop cvar

This commit is contained in:
8dcc 2023-07-21 13:44:18 +02:00
parent 9d9398e764
commit 2578db9486
1 changed files with 12 additions and 0 deletions

12
src/cvars.c Normal file
View File

@ -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;
}