public void EndIntro(bool isGood) { PlayingGameController controller = new PlayingGameController(Context, isGood); controller.StartLevel(new FirstLevelLoader()); WillTransitionTo = controller; }
// TODO: call this private void HandleChosen(bool isGood) { PlayingGameController newController = new PlayingGameController(ctx, isGood); newController.StartLevel(new FirstLevelLoader()); ctx.Game.WillTransitionTo = newController; }
public void InfoScreenDone() { // Hack: Player is good at first in the intro scene PlayingGameController controller = new PlayingGameController(Context, true); controller.StartLevel(new IntroLevelLoader()); currentController = controller; }