예제 #1
0
파일: Chat.cs 프로젝트: tsviet/Chat
 private void SendMessage(Message responce)
 {
     Server.SetActiveChatRoom(responce.other);
     Server.GetMessageList(responce.other).Add(responce.message[0]);
     IPC(Command.OK);
 }