Ejemplo n.º 1
0
        public Client(Connection conn, string secret, int gameId, int teamId)
        {
            this.Secret = secret;
            this.GameId = gameId;
            this.TeamId = teamId;

            this.Server = conn;
        }
Ejemplo n.º 2
0
 public ConnectionTests()
 {
     this.socket = new SocketFake();
     this.conn = new Connection("whatever", 2626, socket);
 }