1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-04 00:23:25 +08:00

fix(vscript): add unknown member (#126)

This commit is contained in:
rumblefrog 2023-04-16 18:07:35 -07:00 committed by GitHub
parent 78673d4c4a
commit 7baac403d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
//========== Copyright © 2008, Valve Corporation, All rights reserved. ======== //========== Copyright © 2008, Valve Corporation, All rights reserved. ========
// //
// Purpose: VScript // Purpose: VScript
// //
@ -267,6 +267,8 @@ struct ScriptFunctionBinding_t
ScriptBindingFunc_t m_pfnBinding; ScriptBindingFunc_t m_pfnBinding;
void * m_pFunction; void * m_pFunction;
unsigned m_flags; unsigned m_flags;
int m_unknown[3];
}; };
//--------------------------------------------------------- //---------------------------------------------------------