예제 #1
0
        //============================================================================

        /*--------------------------------
         *
         * Load Game
         *
         * -----------------------------*/

        private void Load_Clicked(object sender, EventArgs e)
        {
            //-------------------- start the game

            currentGame = new GamePage(true);

            Navigation.PushAsync(currentGame);

            //-- enable the other buttons

            Save_Btn.IsEnabled     = true;
            Continue_Btn.IsEnabled = true;
            Options_Btn.IsEnabled  = true;

            _options = new OptionsPage(currentGame.gpvm, currentGame);
        }