summaryrefslogtreecommitdiff
path: root/Runtime/Scripting/RuntimeScriptGlobals.cpp
blob: bb3139cfdc31437e1d99070e88781605ce4e67ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "RuntimeScriptGlobals.h"

namespace Scripting
{

    void FillRuntimeScriptGlobals(RuntimeScriptGlobals& globals)
    {
        globals.setCurrentEvent = "GameLab.Events.Event.SetCurrentEvent";

        globals.guiBeginFrame = "GameLab.Engine.GUI.BeginFrame";
        globals.guiEndFrame = "GameLab.Engine.GUI.EndFrame";
        globals.guiBeginOnGUI = "GameLab.Engine.GUI.BeginOnGUI";
        globals.guiEndOnGUI = "GameLab.Engine.GUI.EndOnGUI";
    }
}