globals.php 326 B

1234567891011121314151617181920212223
  1. <?php
  2. //// mark: 全局配置
  3. //
  4. /**
  5. * @var string 项目名称
  6. */
  7. define("PROJECTNAME", "ylsj");
  8. /**
  9. * @var string 平台字符串 # and, ios, web
  10. */
  11. define("PLAT", 'and'); # and, ios, web
  12. /**
  13. * 游戏是否上线
  14. */
  15. define("GAME_ONLINE", false);
  16. /**
  17. * 控制debug黑框调试输出
  18. */
  19. define("DEBUGING", true);