コード例 #1
0
ファイル: NetworkComponent.cs プロジェクト: ndhisrfzs/GFrame
 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
ファイル: NetworkComponent.cs プロジェクト: ndhisrfzs/GFrame
 public void Awake()
 {
     this.Server = new TServer();
     this.Server.AcceptCallback += this.OnAccept;
 }