| 123456789101112131415161718192021222324252627282930 |
- /*
- * @Author: dgflash
- * @Date: 2021-11-23 15:28:39
- * @LastEditors: mojunshou 1637302775@qq.com
- * @LastEditTime: 2025-04-10 17:12:49
- */
- /** 游戏事件 */
- export enum GameEvent {
- /** 游戏服务器连接成功 */
- GameServerConnected = "GameServerConnected",
- /** 登陆成功 */
- LoginSuccess = "LoginSuccess",
- /**重新开始 */
- RestartGame = "RestartGame",
- /**复活 */
- Resurrection = "Resurrection",
- /**微信登录成功*/
- WechatLoginSuss = "WechatLoginSuss",
- /**二倍速开启成功*/
- DoubleSpeedOpenSuccess = "DoubleSpeedOpenSuccess",
- /**用户登录*/
- UserLogin = "UserLogin",
- /**打开*/
- openView = "openView",
- /**打开提现记录*/
- openRecordView = "openRecordView",
- /**展示金币动画*/
- showCoinAnimation = "showCoinAnimation",
- }
|