| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /*
- * @Author: dgflash
- * @Date: 2021-11-23 15:28:39
- * @LastEditors: mojunshou 1637302775@qq.com
- * @LastEditTime: 2025-04-28 11:45:08
- */
- /** 游戏事件 */
- export enum GameEvent {
- /** 游戏服务器连接成功 */
- GameServerConnected = "GameServerConnected",
- /** 登陆成功 */
- LoginSuccess = "LoginSuccess",
- /**重新开始 */
- RestartGame = "RestartGame",
- /**复活 */
- Resurrection = "Resurrection",
- /**微信登录成功*/
- WechatLoginSuss = "WechatLoginSuss",
- /**二倍速开启成功*/
- DoubleSpeedOpenSuccess = "DoubleSpeedOpenSuccess",
- /**用户登录*/
- UserLogin = "UserLogin",
- /**打开*/
- openView = "openView",
- /**打开提现记录*/
- openRecordView = "openRecordView",
- /**展示金币动画*/
- showCoinAnimation = "showCoinAnimation",
- //更新红包提现任务列表
- updateRedPackeTaskList = "updateRedPackeTaskList",
- //更新红包币和微信币
- updateHbAndWxCoin = "updateHbAndWxCoin",
- /**开始自动功能*/
- StartAutoGame = "StartAutoGame",
- /**更新游戏状态*/
- updateGameState = "updateGameState",
- /**暂停游戏*/
- pauseGame = "pauseGame",
- /**恢复游戏*/
- resumeGame = "resumeGame",
- /**更新消除后分数*/
- updateGameScore = "updateGameScore"
- }
|