I'm trying to code a program where you "run" a video game company, but it's not even letting me display the menu to the user. I just started it, so there's not much to go wrong, therefore, not much to look over again.
#include <iostream>
#include <iomanip>
#include <string>
#include "gamecompany.h"
usingnamespace std;
void gamecompany::showMenu()
{
cout << "Choose one of the following options by typing in the appropriate number." << endl;
cout << "1 - Add a new game" << endl;
cout << "2 - View game list by genre" << endl;
}