Thanks for sharing
Here is my header file.
#pragma once
class FBullCowGame {
public:
void Reset(); //TODO make a more rich return value
int GetMaxTries();
bool IsGameWon();
int HowManyBulls();
int HowManyCows();
private:
int MyCurrentTry;
int MyMaxTries;
};