Esempio n. 1
0
 public void Awake(IPEndPoint ipEndPoint)
 {
     this.Server = new TServer(ipEndPoint);
     this.Server.AcceptCallback += this.OnAccept;
 }
Esempio n. 2
0
 protected AClient(AServer server, ClientType clientType)
 {
     this.ClientType = clientType;
     this.server     = server;
 }
Esempio n. 3
0
 public void Awake()
 {
     this.Server = new TServer();
     this.Server.AcceptCallback += this.OnAccept;
 }