My attempt at Class Methods

[code] class FBullCowGame
{
public:
void Reset(); // TO-DO make a more rich return value.
int GetMaxTries();
int GetCurrentTry();
int GetBull();
int GetCow();
int Start();
bool Win();
bool Lose();
int Timer();
int Result();
void Exit();

};

[/code]

Privacy & Terms