Add g_flNextAttack and g_flNextPrimaryAttack

This commit is contained in:
8dcc 2023-07-31 15:35:44 +02:00
parent 70a69c1fc8
commit 7cf0b30495
2 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@
game_id this_game_id = HL;
vec3_t g_punchAngles = { 0, 0, 0 };
float g_flNextAttack = 0.f, g_flNextPrimaryAttack = 0.f;
void* hw;
void** h_client;

View File

@ -35,6 +35,7 @@ enum game_id {
extern game_id this_game_id;
extern vec3_t g_punchAngles;
extern float g_flNextAttack, g_flNextPrimaryAttack;
extern void* hw;
extern void** h_client; /* hClientDLL hander */