From 56fa55a751190ea67b3654beae9d94842d503c66 Mon Sep 17 00:00:00 2001 From: 8dcc <8dcc.git@gmail.com> Date: Sun, 30 Jul 2023 20:05:12 +0200 Subject: [PATCH] Add g_punchAngles --- src/globals.c | 3 ++- src/include/globals.h | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) 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 */