Esempio n. 1
0
 /// <summary>
 /// Handle user input
 /// </summary>
 public static void UserInputEnding()
 {
     if (SwinGame.KeyTyped(KeyCode.SpaceKey) || SwinGame.KeyTyped(KeyCode.EscapeKey) || SwinGame.MouseClicked(MouseButton.LeftButton))
     {
         //Go to manage score in HighController class
         HighscoreController.ManageScore(BattleController.Score);
         //Reset the game for preparing the new game
         BattleController.ResetGame();
         //End this state
         GameController.EndCurrentState();
         //Go back to background music
         SwinGame.PlayMusic("BackgroundMusic");
     }
 }