mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-29 08:17:59 +03:00
More (ScriptInterface)Flow -> (ScriptInterface)FlowHandler for consistency.
This commit is contained in:
parent
2822610edd
commit
782ad93810
30 changed files with 48 additions and 48 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue