| 123456789101112131415161718 |
- /*
- * @Author: dgflash
- * @Date: 2021-11-23 15:28:39
- * @LastEditors: mojunshou 1637302775@qq.com
- * @LastEditTime: 2025-03-27 18:31:37
- */
- /** 游戏事件 */
- export enum GameEvent {
- /** 游戏服务器连接成功 */
- GameServerConnected = "GameServerConnected",
- /** 登陆成功 */
- LoginSuccess = "LoginSuccess",
- /**重新开始 */
- RestartGame = "RestartGame",
- /**复活 */
- Resurrection = "Resurrection"
- }
|