Files
Main/Assets/GameAssets/Resources/Lua/Logic/ScreenCDSystem/ScreenCDSystem.lua
2025-01-25 04:38:09 +08:00

18 lines
463 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

------------------------------------------------
--作者: 杨全福
--日期: 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