- /**
- * 计时事件 - 逻辑层
- */
- export default class TimeEventName {
-
- /**暂停 */
- public readonly Time_Pause: string = "Time_Pause";
- /**恢复 */
- public readonly Time_Resume: string = "Time_Resume";
- /**全局计时器-帧 */
- public readonly Time_ConstFrame: string = "Time_ConstFrame";
- /**全局计时器-秒 */
- public readonly Time_ConstSecond: string = "Time_ConstSecond";
- }
|