FBullCowGame header file

#pragma once

class FBullCowGame{

public:
void Reset();//TODO make a more rich return value
int GetMaxTries();
int Bulls(string);
int Cows(string);

//Focus on public Interface.
private:
int MyCurrentTry();
int MyMaxTry();
bool IsIsogram(string);
};

Privacy & Terms