[saco] Implement/match CGame::LoadCollisionFile(...)

This commit is contained in:
RD42 2024-08-14 23:17:38 +08:00
parent 79d50cb3d4
commit 5e8c0551fc
2 changed files with 13 additions and 0 deletions

View File

@ -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
}
//-----------------------------------------------------------

View File

@ -133,6 +133,7 @@ public:
DWORD GetTimeInMilliseconds();
int GetRwObjectsCount();
void RequestAnimationsAndModels();
void LoadCollisionFile(char *szFileName);
};
//-----------------------------------------------------------