ConstValue.cs 982 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. public static int MoneyShowVipName = 1040; //10.4元享受vip待遇
  11. }
  12. public enum BattlePushCnst
  13. {
  14. FastStreamPush = 1,
  15. BattleClear
  16. }
  17. //编辑器--事件开端--当从游戏服收到消息,Message列表
  18. public enum BattleNotify
  19. {
  20. //客户端消息转发
  21. ClientIsReady,
  22. StartRefreshMonster,
  23. StartRefreshMonster2,
  24. StartRefreshMonster3,
  25. //刷各种礼物事件
  26. TiktokGift_1,
  27. TiktokGift_10,
  28. TiktokGift_52,
  29. TiktokGift_52_ext,
  30. TiktokGift_99,
  31. TiktokGift_199,
  32. TiktokGift_520,
  33. //点赞能量爆满
  34. TiktokLike_energy,
  35. //点赞每满100
  36. TiktokLike_100
  37. }
  38. }