public void quitGame()
 {
     startScreen = new StartScreen(this);
     currentScreen = Screen.StartScreen;
     gameScreen = null;
     scoreboardScreen = null;
 }
 public void startGame()
 {
     gameScreen = new GameScreen(this);
     currentScreen = Screen.GameScreen;
     startScreen = null;
 }