Rename Entities -> ObjectsHandler.

This commit is contained in:
hispidence 2022-02-05 16:03:54 +00:00
parent ce960d1052
commit 23e8d810ae
7 changed files with 13 additions and 13 deletions

View file

@ -22,9 +22,9 @@ ScriptInterfaceFlow* ScriptInterfaceState::CreateFlow()
return new GameFlow(&g_solState);
}
ScriptInterfaceObjectsHandler* ScriptInterfaceState::CreateEntities()
ScriptInterfaceObjectsHandler* ScriptInterfaceState::CreateObjectsHandler()
{
return new GameEntities(&g_solState);
return new ObjectsHandler(&g_solState);
}
ScriptInterfaceStringsHandler* ScriptInterfaceState::CreateStringsHandler()