diff --git a/saco/game/game.cpp b/saco/game/game.cpp index 9cccc0b..dfb8051 100644 --- a/saco/game/game.cpp +++ b/saco/game/game.cpp @@ -1094,3 +1094,15 @@ void CGame::RequestAnimationsAndModels() //----------------------------------------------------------- +void CGame::LoadCollisionFile(char *szFileName) +{ + _asm push 0 + _asm push szFileName + _asm mov edx, 0x5B4E60 + _asm call edx + _asm pop edx + _asm pop edx +} + +//----------------------------------------------------------- + diff --git a/saco/game/game.h b/saco/game/game.h index c2d4049..b020d90 100644 --- a/saco/game/game.h +++ b/saco/game/game.h @@ -133,6 +133,7 @@ public: DWORD GetTimeInMilliseconds(); int GetRwObjectsCount(); void RequestAnimationsAndModels(); + void LoadCollisionFile(char *szFileName); }; //-----------------------------------------------------------