예제 #1
0
 public void Awake(IPEndPoint ipEndPoint)
 {
     this.Server = new TServer(ipEndPoint);
     this.Server.AcceptCallback += this.OnAccept;
 }
예제 #2
0
파일: AClient.cs 프로젝트: ndhisrfzs/GFrame
 protected AClient(AServer server, ClientType clientType)
 {
     this.ClientType = clientType;
     this.server     = server;
 }
예제 #3
0
 public void Awake()
 {
     this.Server = new TServer();
     this.Server.AcceptCallback += this.OnAccept;
 }