ro-webgl/Assets/Lua/Managers/GuideMgr.lua
2021-12-21 09:40:39 +08:00

17 lines
337 B
Lua

local GuideMgr = class("GuideMgr")
function GuideMgr:ctor()
--ManagerContainer.LuaEventMgr:RegisterUIEvent("GuideMgr", UI_FILLCONTENT_COMPELETED, function (wnd)
--
--end)
end
function GuideMgr:Destroy()
if tolua.getpeer(self) ~= nil then
tolua.setpeer(self, nil)
end
end
return GuideMgr