This is going to sound stupid since the answer is probably in front of my eyes, but I'm currently making a text based game and my compiler keeps giving me to messages both for line 2 for you guys. " Expected ';' before "int"" and the other message is "expected primary-expression before "int""
1 2 3 4 5 6 7 8 9 10 11 12 13 14
int ship_name;
;int menu_choice()
{
cout << "1-New Game/n";
cout << "2-Load Game/n/n";
cout << "Choose a option:/n";
cin >> menu_choice;
if (menu_choice == "New Game/n")
{
cout << "\nLoading...";