コード例 #1
0
        /// <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();
        }
コード例 #2
0
        /// <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();
        }