1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 19:43:06 +01:00

Implement surfaces, edges and stations as objects

This commit is contained in:
Ted John
2018-12-05 20:33:45 +00:00
parent d9806305b0
commit 06f203a7e7
66 changed files with 1212 additions and 811 deletions

View File

@@ -643,17 +643,6 @@ const rct_object_entry* object_list_find(rct_object_entry* entry)
return result;
}
void object_list_load()
{
auto context = GetContext();
const auto& localisationService = context->GetLocalisationService();
auto& objectRepository = context->GetObjectRepository();
objectRepository.LoadOrConstruct(localisationService.GetCurrentLanguage());
auto& objectManager = context->GetObjectManager();
objectManager.UnloadAll();
}
void* object_repository_load_object(const rct_object_entry* objectEntry)
{
Object* object = nullptr;