TimeEventName.ts 418 B

123456789101112131415
  1. /**
  2. * 计时事件 - 逻辑层
  3. */
  4. export default class TimeEventName {
  5. /**暂停 */
  6. public readonly Time_Pause: string = "Time_Pause";
  7. /**恢复 */
  8. public readonly Time_Resume: string = "Time_Resume";
  9. /**全局计时器-帧 */
  10. public readonly Time_ConstFrame: string = "Time_ConstFrame";
  11. /**全局计时器-秒 */
  12. public readonly Time_ConstSecond: string = "Time_ConstSecond";
  13. }