Add g_flNextAttack and g_flNextPrimaryAttack
This commit is contained in:
parent
70a69c1fc8
commit
7cf0b30495
|
@ -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;
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue