diff --git a/src/storybook.cpp b/src/storybook.cpp index 2caf9c3..0eefcf8 100644 --- a/src/storybook.cpp +++ b/src/storybook.cpp @@ -77,6 +77,11 @@ void Storybook::Play() { for (auto c : *current->footer.choices) { print_choice(c.second); } + printf("Make a selection: "); + int choice; + std::cin >> choice; + Find((*current->footer.choices)[choice]->id); + break; default: IsEnded = true; // TODO }