コード例 #1
0
ファイル: ChatDialogContext.cs プロジェクト: slb1988/agame
 private bool OnRecvWorldChatMsgNotify(RecvWorldChatMsgNotify rsp)
 {
     if ((this._mode == Mode.World) && (Singleton <ChatModule> .Instance.chatRoomId > 0))
     {
         this.UpdateChatList(1);
     }
     return(false);
 }
コード例 #2
0
ファイル: ChatModule.cs プロジェクト: slb1988/agame
 private bool OnRecvWorldChatMsgNotify(RecvWorldChatMsgNotify rsp)
 {
     this.worldChatMsgList.Add(new ChatMsgDataItem(rsp.get_chat_msg()));
     return(false);
 }