What I have so far:
#pragma once
class FBullCowGame {
public:
void StartGame();
void Reset(); // TODO make a more rich return value.
int GetMaxTries();
string GenerateIsogram();
bool CheckGuess();
string RevealAnswer();
bool AskToRetry();
void EndGame();
private:
// ...
};