public Client(Connection conn, string secret, int gameId, int teamId) { this.Secret = secret; this.GameId = gameId; this.TeamId = teamId; this.Server = conn; }
public ConnectionTests() { this.socket = new SocketFake(); this.conn = new Connection("whatever", 2626, socket); }