Skip to content
Permalink
Browse files
allows the game to progress to opening sequence
  • Loading branch information
Nathan Brown committed Aug 9, 2018
1 parent 8f0ea7d commit 69038ebb4085ca8b18e72dfa0bf9a43b3ba0e862
Showing 1 changed file with 4 additions and 1 deletion.
@@ -1,6 +1,7 @@
#include <iostream>
#include <string>
#include "tolower.cpp"
#include "game_start.cpp"


using namespace std;
@@ -29,7 +30,9 @@ bool select_main_menu_option(){
}
//to start a new game
if (main_option == "play"){
//TODO: call function to start a new game
cout << "You wish to embark along the path of the underlings? So be it..." << endl;
cout << "~~~~~~~~~~~~~~~~~" << endl;
opening_sequence();
}
else{
cout << "Menu Choice Not Valid" << endl;

0 comments on commit 69038eb

Please sign in to comment.