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