From 7baac403d7889f9911ec64939a019107399d1a38 Mon Sep 17 00:00:00 2001 From: rumblefrog Date: Sun, 16 Apr 2023 18:07:35 -0700 Subject: [PATCH] fix(vscript): add unknown member (#126) --- public/vscript/ivscript.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/vscript/ivscript.h b/public/vscript/ivscript.h index b1d1c81d..7f5c1db7 100644 --- a/public/vscript/ivscript.h +++ b/public/vscript/ivscript.h @@ -1,4 +1,4 @@ -//========== Copyright © 2008, Valve Corporation, All rights reserved. ======== +//========== Copyright © 2008, Valve Corporation, All rights reserved. ======== // // Purpose: VScript // @@ -267,6 +267,8 @@ struct ScriptFunctionBinding_t ScriptBindingFunc_t m_pfnBinding; void * m_pFunction; unsigned m_flags; + + int m_unknown[3]; }; //---------------------------------------------------------