ConstValue.cs 358 B

123456789101112131415161718192021222324
  1. namespace ET
  2. {
  3. /**
  4. * 静态常量值
  5. */
  6. public static class ConstValue
  7. {
  8. /** session过期时间 **/
  9. public const int SessionTimeoutTime = 30 * 1000;
  10. }
  11. public enum BattlePushCnst
  12. {
  13. FastStreamPush = 1,
  14. BattleClear
  15. }
  16. public enum BattleNotify
  17. {
  18. ClientIsReady,
  19. }
  20. }