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