ConstValue.cs 904 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. namespace ET
  2. {
  3. /**
  4. * 静态常量值
  5. */
  6. public static class ConstValue
  7. {
  8. //session过期时间(毫秒),设置小于等于0时,session永不过期
  9. public const int SessionTimeoutTime = 5 * 1000;
  10. }
  11. public enum BattlePushCnst
  12. {
  13. FastStreamPush = 1,
  14. BattleClear
  15. }
  16. //编辑器--事件开端--当从游戏服收到消息,Message列表
  17. public enum BattleNotify
  18. {
  19. //客户端消息转发
  20. ClientIsReady,
  21. StartRefreshMonster,
  22. StartRefreshMonster2,
  23. StartRefreshMonster3,
  24. //刷各种礼物事件
  25. TiktokGift_1,
  26. TiktokGift_10,
  27. TiktokGift_52,
  28. TiktokGift_52_ext,
  29. TiktokGift_99,
  30. TiktokGift_199,
  31. TiktokGift_520,
  32. //点赞能量爆满
  33. TiktokLike_energy,
  34. //点赞每满100
  35. TiktokLike_100
  36. }
  37. }