예제 #1
0
파일: Wrapper.cs 프로젝트: kper/chat
 public Wrapper(User user,Color color,Communicator communicator,Chatroom chatroom)
 {
     this.user = user;
     this.color = color;
     this.communicator = communicator;
     this.chatroom = chatroom;
 }
예제 #2
0
파일: Wrapper.cs 프로젝트: kper/chat
 public Wrapper(User user,Socket socket)
 {
     this.user = user;
     this.communicator = new Communicator(socket);
 }