Exemple #1
0
 public void showInstructions()
 {
     instructions = new Instructions(this, this.SpriteBatch);
     activeScreen = Screen.Instructions;
     startScreen = null;
 }
Exemple #2
0
 public void goStartScreen()
 {
     startScreen = new StartScreen(this, this.SpriteBatch);
     activeScreen = Screen.StartScreen;
     instructions = null;
 }