Rename some files and folders.

This commit is contained in:
hispidence 2022-02-05 15:56:04 +00:00
parent 54b519776c
commit 00b6e76bea
16 changed files with 58 additions and 40 deletions

View file

@ -2,7 +2,7 @@
#include "ScriptInterfaceState.h"
#include "GameLogicScript.h"
#include "GameFlowScript.h"
#include "Entities/Entities.h"
#include "Objects/ObjectsHandler.h"
#include "Strings/StringsHandler.h"
sol::state g_solState;
@ -22,7 +22,7 @@ ScriptInterfaceFlow* ScriptInterfaceState::CreateFlow()
return new GameFlow(&g_solState);
}
ScriptInterfaceEntities* ScriptInterfaceState::CreateEntities()
ScriptInterfaceObjectsHandler* ScriptInterfaceState::CreateEntities()
{
return new GameEntities(&g_solState);
}