| 123456789101112131415161718 |
- /*
- * @Author: dgflash
- * @Date: 2021-11-23 15:28:39
- * @LastEditors: mojunshou 1637302775@qq.com
- * @LastEditTime: 2025-03-14 17:51:15
- */
- /** 游戏事件 */
- export enum GameEvent {
- /** 游戏服务器连接成功 */
- GameServerConnected = "GameServerConnected",
- /** 登陆成功 */
- LoginSuccess = "LoginSuccess",
- /**加载配置成功 */
- LoadJsonSuccess = "LoadJsonSuccess",
- /**重新开始游戏*/
- RestartGame = "RestartGame"
- }
|