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