Пример #1
0
 /// <summary>
 /// Event handler for when the user selects ok on the "are you sure
 /// you want to quit" message box. This uses the loading screen to
 /// transition from the game back to the main menu screen.
 /// </summary>
 void ConfirmQuitMessageBoxAccepted(object sender, EventArgs e)
 {
     LoadingScreen.Load(false, null, new BackgroundScreen(), new MainMenuScreen());
 }
Пример #2
0
        /// <summary>
        /// Event handler for when the Play Game menu entry is selected.
        /// </summary>
        void PlayGameMenuEntrySelected(object sender, EventArgs e)
        {
            SoundManager.GetSound(_BackgroundMusic).Stop();

            LoadingScreen.Load(true, new TestLevel1());
        }