namespace AxibugEmuOnline.Client.Event { public enum EEvent { // 添加你自己需要的事件类型 OnChatMsg, OnRoomListAllUpdate,//房间列表全量刷新 OnRoomListSingleUpdate,//房间列表中单个更新 OnRoomGetRoomScreen,//获取到房间数据 /// /// 我进入房间 /// OnMineJoinRoom, /// /// 我离开房间 /// OnMineLeavnRoom, /// /// 其他人进入房间 /// OnOtherPlayerJoinRoom, /// /// 其他人离开房间 /// OnOtherPlayerLeavnRoom, /// /// 服务器等待Step更新 /// OnRoomWaitStepChange, } }