From 92fab12a8007f941adee7ac28f207283605d519b Mon Sep 17 00:00:00 2001 From: xen Date: Fri, 24 May 2024 22:19:57 +0300 Subject: [PATCH] Update IGameSystem (#247) Co-authored-by: GAMMACASE <31375974+GAMMACASE@users.noreply.github.com> --- game/shared/igamesystem.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/game/shared/igamesystem.h b/game/shared/igamesystem.h index c2776b9a..6a1e71dd 100644 --- a/game/shared/igamesystem.h +++ b/game/shared/igamesystem.h @@ -277,6 +277,7 @@ public: GS_EVENT_IMPL( ClientGamePostSimulate ); virtual void unk_1281( const void *const msg ) = 0; + virtual void unk_1282( const void *const msg ) = 0; GS_EVENT_IMPL( GameFrameBoundary ); GS_EVENT_IMPL( OutOfGameFrameBoundary ); @@ -289,6 +290,7 @@ public: virtual void unk_1287( const void *const msg ) = 0; virtual void unk_1288( const void *const msg ) = 0; virtual void unk_1289( const void *const msg ) = 0; + virtual void unk_1290( const void *const msg ) = 0; virtual const char* GetName() = 0; virtual void SetGameSystemGlobalPtrs(void* pValue) = 0; @@ -366,6 +368,7 @@ public: GS_EVENT( ClientGamePostSimulate ) {} virtual void unk_1281( const void *const msg ) {} + virtual void unk_1282( const void *const msg ) {} GS_EVENT( GameFrameBoundary ) {} GS_EVENT( OutOfGameFrameBoundary ) {} @@ -378,6 +381,7 @@ public: virtual void unk_1287( const void *const msg ) {} virtual void unk_1288( const void *const msg ) {} virtual void unk_1289( const void *const msg ) {} + virtual void unk_1290( const void *const msg ) {} virtual const char* GetName() { return m_pName; } virtual void SetGameSystemGlobalPtrs(void* pValue) {}