diff --git a/saco/game/game.cpp b/saco/game/game.cpp index dfb8051..31bc7e1 100644 --- a/saco/game/game.cpp +++ b/saco/game/game.cpp @@ -1106,3 +1106,13 @@ void CGame::LoadCollisionFile(char *szFileName) //----------------------------------------------------------- +void CGame::LoadCullZone(char *szLine) +{ + _asm push szLine + _asm mov edx, 0x5B4B40 + _asm call edx + _asm pop edx +} + +//----------------------------------------------------------- + diff --git a/saco/game/game.h b/saco/game/game.h index b020d90..86dc47a 100644 --- a/saco/game/game.h +++ b/saco/game/game.h @@ -134,6 +134,7 @@ public: int GetRwObjectsCount(); void RequestAnimationsAndModels(); void LoadCollisionFile(char *szFileName); + void LoadCullZone(char *szLine); }; //-----------------------------------------------------------