示例#1
0
 public void quitGame()
 {
     startScreen = new StartScreen(this);
     currentScreen = Screen.StartScreen;
     gameScreen = null;
     scoreboardScreen = null;
 }
示例#2
0
 public void startGame()
 {
     gameScreen = new GameScreen(this);
     currentScreen = Screen.GameScreen;
     startScreen = null;
 }