1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 19:13:07 +01:00

fix track manager preview

This commit is contained in:
Ted John
2016-07-07 00:09:31 +01:00
parent fa951a29cd
commit d7e1933f12
4 changed files with 15 additions and 17 deletions

View File

@@ -462,4 +462,10 @@ extern "C"
IObjectManager * objectManager = GetObjectManager();
objectManager->UnloadObjects(entries, count);
}
void object_manager_unload_all_objects()
{
IObjectManager * objectManager = GetObjectManager();
objectManager->UnloadAll();
}
}