class Game
{
public:
/**
Plays the game while the player wants to continue
*/
void play();
/**
Reads player name and level.
*/
void read_player_information();
/**
Plays a round, with up to two guesses.
*/
void play_round();
};