using System.Collections; using System.Collections.Generic; using UnityEngine; /******************************************************************************** ** Company: YC ** auth: CaoTing ** date: 2021\5 ** desc: 删除房间返回信息 *******************************************************************************/ namespace Studio.Scripts.HttpMessage { [System.Serializable] public class DeleteRoomCallBackMessage : BaseHttpCallBackMessage { public DeleteRoomCallBackData data; public DeleteRoomCallBackMessage() { messageModuleType = MessageModuleType.Room; _messageType = MessageType.DeleteRoomType; } } [System.Serializable] public struct DeleteRoomCallBackData : ICallData { /// /// 房间ID /// public int roomID; } }