/// <summary> /// 注册消息 /// </summary> public void RegMsg(int msgId) { if (MsgHandler == null) { MsgHandler = new MsgHandlerBase(this, this); } MsgHandler.AddMsgId(msgId); }
/// <summary> /// 同步发送消息 /// </summary> public void SendMsgSync(IMsgPack msg) { if (MsgHandler == null) { MsgHandler = new MsgHandlerBase(this, this); } MsgHandler.SendMsgSync(msg); }