Created
March 4, 2018 02:34
-
-
Save pxpc2/f11e745e092b57f13aaf4435a1e20efd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "FBullCowGame.h" | |
| void FBullCowGame::reset() | |
| { | |
| return; | |
| } | |
| int FBullCowGame::getMaxTries() | |
| { | |
| return 0; | |
| } | |
| int FBullCowGame::getCurrTries() | |
| { | |
| return 0; | |
| } | |
| bool FBullCowGame::isGameWon() | |
| { | |
| return false; | |
| } | |
| bool FBullCowGame::checkGuessValidity(std::string) | |
| { | |
| return false; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment