More (ScriptInterface)Flow -> (ScriptInterface)FlowHandler for consistency.

This commit is contained in:
hispidence 2022-02-06 15:02:16 +00:00
parent 2822610edd
commit 782ad93810
30 changed files with 48 additions and 48 deletions

View file

@ -1,7 +1,7 @@
#include "frameworkandsol.h"
#include "ScriptInterfaceState.h"
#include "Logic/LogicHandler.h"
#include "Flow/Flow.h"
#include "Flow/FlowHandler.h"
#include "Objects/ObjectsHandler.h"
#include "Strings/StringsHandler.h"
#include "ReservedScriptNames.h"
@ -19,9 +19,9 @@ ScriptInterfaceGame* ScriptInterfaceState::CreateGame()
return new LogicHandler(&g_solState, s_rootTable);
}
ScriptInterfaceFlow* ScriptInterfaceState::CreateFlow()
ScriptInterfaceFlowHandler* ScriptInterfaceState::CreateFlow()
{
return new Flow(&g_solState, s_rootTable);
return new FlowHandler(&g_solState, s_rootTable);
}
ScriptInterfaceObjectsHandler* ScriptInterfaceState::CreateObjectsHandler()