17 lines
294 B
Lua
17 lines
294 B
Lua
|
CommonActPageManager = {}
|
||
|
local this = CommonActPageManager
|
||
|
|
||
|
function this.Initialize()
|
||
|
end
|
||
|
|
||
|
function this.GetData(actType)
|
||
|
if actType == ActivityTypeDef.YunYouShangRen then
|
||
|
this.GetYunYouData()
|
||
|
end
|
||
|
end
|
||
|
|
||
|
function this.GetYunYouData()
|
||
|
-- body
|
||
|
end
|
||
|
|
||
|
return CommonActPageManager
|