constant-game.ts 459 B

1234567891011121314151617
  1. class constant_game {
  2. public static readonly GAME_FAIL = "GAME_FAIL"; //游戏失败
  3. public static readonly GAME_SUCCESS = "GAME_SUCCESS";//游戏胜利
  4. public static isNeedGuideVideo = false;//ui引导看视频
  5. public static isShowInnerCrazyAward = false;
  6. public static crazyByZombieNumTimes = 10;
  7. public static firstCrazyByZombieNum = 1;
  8. public static crazyAwardPopMaxTimes = 5;
  9. }
  10. export let GameEvent = constant_game;