summaryrefslogtreecommitdiff
path: root/Data/DefaultContent/Libraries/GameLab/Events/Event.lua
blob: f2940bc5ffbdc9bdcc496de8fd83cf85766e75af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
local Debug = GameLab.Debug
local inspect = require("inspect")

local Event = GameLab.GlobalTable("GameLab.Events.Event")

Event.current = nil

Event.SetCurrentEvent = function(evt)
    Event.current = evt
end

return Event