Skip to content
Snippets Groups Projects
Commit 26fa65ff authored by Ari Trachtenberg's avatar Ari Trachtenberg
Browse files

add getBoardSquare

parent 21da515b
No related branches found
No related tags found
No related merge requests found
......@@ -200,6 +200,10 @@ int getCols(GAME_CODE theGameCode) {
return strToInt(parseGameStatus(theGameCode)["cols"]);
}
int getInARow(GAME_CODE theGameCode) {
return strToInt(parseGameStatus(theGameCode)["inARow"]);
}
string getBoard(GAME_CODE theGameCode) {
return parseGameStatus(theGameCode)["board"];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment