Example #1
0
    public void ContinueStory()
    {
        if (!story.canContinue)
        {
            return;
        }

        string storyText = story.Continue();

        view.CreateTextBubble(storyText, false);


        if (story.currentChoices.Any())
        {
            view.DisplayOptions(story.currentChoices);
        }
        else
        {
            ContinueStory();
        }
    }