12 lines
220 B
Lua
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 |