コード例 #1
0
ファイル: Client.cs プロジェクト: gleroi/k-rabbit
        public Client(Connection conn, string secret, int gameId, int teamId)
        {
            this.Secret = secret;
            this.GameId = gameId;
            this.TeamId = teamId;

            this.Server = conn;
        }
コード例 #2
0
ファイル: ConnectionTests.cs プロジェクト: gleroi/k-rabbit
 public ConnectionTests()
 {
     this.socket = new SocketFake();
     this.conn = new Connection("whatever", 2626, socket);
 }