Beispiel #1
0
        public void EndIntro(bool isGood)
        {
            PlayingGameController controller = new PlayingGameController(Context, isGood);

            controller.StartLevel(new FirstLevelLoader());
            WillTransitionTo = controller;
        }
Beispiel #2
0
        // TODO: call this
        private void HandleChosen(bool isGood)
        {
            PlayingGameController newController = new PlayingGameController(ctx, isGood);

            newController.StartLevel(new FirstLevelLoader());
            ctx.Game.WillTransitionTo = newController;
        }
Beispiel #3
0
        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;
        }