diff --git a/src/globals.c b/src/globals.c index f8ca6ce..1ec3ad3 100644 --- a/src/globals.c +++ b/src/globals.c @@ -8,7 +8,8 @@ #include "include/sdk.h" #include "include/util.h" -enum game_id this_game_id = HL; +game_id this_game_id = HL; +vec3_t g_punchAngles = { 0, 0, 0 }; void* hw; void** h_client; diff --git a/src/include/globals.h b/src/include/globals.h index 573a933..ca042d1 100644 --- a/src/include/globals.h +++ b/src/include/globals.h @@ -34,6 +34,7 @@ enum game_id { /*----------------------------------------------------------------------------*/ extern game_id this_game_id; +extern vec3_t g_punchAngles; extern void* hw; extern void** h_client; /* hClientDLL hander */