18 lines
463 B
Lua
18 lines
463 B
Lua
------------------------------------------------
|
||
--作者: 杨全福
|
||
--日期: 2019-07-24
|
||
--文件: ScreenCDSystem.lua
|
||
--模块: ScreenCDSystem
|
||
--描述: 屏幕CD效果系统
|
||
------------------------------------------------
|
||
|
||
local ScreenCDSystem = {
|
||
|
||
};
|
||
|
||
--实现C#端函数,展示CD效果
|
||
function ScreenCDSystem:ShowCDEffect(time, timeText)
|
||
GameCenter.PushFixEvent(UIEventDefine.UICountDownForm_OPEN, {time, timeText})
|
||
end
|
||
|
||
return ScreenCDSystem |