miduo_client/Assets/ManagedResources/~Lua/Modules/Mission/Behaviour/BHShowProgress.lua

12 lines
258 B
Lua
Raw Normal View History

2020-05-09 13:31:21 +08:00
--- 显示进度条界面
local BHShowProgress = {}
local this = BHShowProgress
function this.Excute(arg, func)
local content = arg.content
local time = arg.time
UIManager.OpenPanel(UIName.ProgressPanel, content, func, time)
end
return this