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

12 lines
220 B
Lua

local ActivityMgr = class("ActivityMgr")
function ActivityMgr:ctor()
end
function ActivityMgr:Destroy()
if tolua.getpeer(self) ~= nil then
tolua.setpeer(self, nil)
end
end
return ActivityMgr