/// <summary> /// Calls the Ranked Gameplay view with the difficulty set to ipossible /// </summary> private void btnImpossible_Click(object sender, EventArgs e) { this.Hide(); var window = new RankedGameWindow("impossible"); window.ShowDialog(); this.Close(); }
/// <summary> /// Calls the Ranked Gameplay view with the difficulty set to hard /// </summary> private void btnHard_Click(object sender, EventArgs e) { this.Hide(); var window = new RankedGameWindow("hard"); window.ShowDialog(); this.Close(); }