GameEvent.ts 830 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * @Author: dgflash
  3. * @Date: 2021-11-23 15:28:39
  4. * @LastEditors: mojunshou 1637302775@qq.com
  5. * @LastEditTime: 2025-04-10 17:12:49
  6. */
  7. /** 游戏事件 */
  8. export enum GameEvent {
  9. /** 游戏服务器连接成功 */
  10. GameServerConnected = "GameServerConnected",
  11. /** 登陆成功 */
  12. LoginSuccess = "LoginSuccess",
  13. /**重新开始 */
  14. RestartGame = "RestartGame",
  15. /**复活 */
  16. Resurrection = "Resurrection",
  17. /**微信登录成功*/
  18. WechatLoginSuss = "WechatLoginSuss",
  19. /**二倍速开启成功*/
  20. DoubleSpeedOpenSuccess = "DoubleSpeedOpenSuccess",
  21. /**用户登录*/
  22. UserLogin = "UserLogin",
  23. /**打开*/
  24. openView = "openView",
  25. /**打开提现记录*/
  26. openRecordView = "openRecordView",
  27. /**展示金币动画*/
  28. showCoinAnimation = "showCoinAnimation",
  29. }