コード例 #1
0
ファイル: GateClient.cs プロジェクト: cosmosbox/cosmos
 public GateClient(string host, int port)
 {
     _gateClient = new HandlerClient(host, port);
     
 }
コード例 #2
0
 public PlayerHandlerClient(string host, int port, int subcribePort)
 {
     _handlerClient = new HandlerClient(host, port, subcribePort);
     SubcribePlayer();
 }