2020-08-06 17:52:32 +08:00
|
|
|
|
DownLoadManager = {};
|
2020-05-09 13:31:21 +08:00
|
|
|
|
local this = DownLoadManager;
|
|
|
|
|
|
|
|
|
|
function this.Initialize()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
--更新游戏
|
|
|
|
|
--game:游戏名字
|
|
|
|
|
--action:完成回调
|
|
|
|
|
function this.UpdateGame(game,action)
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
2020-06-23 18:36:24 +08:00
|
|
|
|
return this
|