summaryrefslogtreecommitdiff
path: root/Resources/DefaultContent/Libraries/GameLab/Engine/init.lua
blob: 8cb2c49ca075fe52d93a76ee2a2e88e09c1fb038 (plain)
1
2
3
4
5
6
7
8
GameLab.Engine = GameLab.Engine or {} 

local PACKAGE_NAME = ... 
local require = function (name) 
    return _G["require"](PACKAGE_NAME .. "." .. name)
end

return GameLab.Engine