diff --git a/src/main/duellist-spielesammlung-projekt.h b/src/main/duellist-spielesammlung-projekt.h index 4e1bce2..b617d81 100644 --- a/src/main/duellist-spielesammlung-projekt.h +++ b/src/main/duellist-spielesammlung-projekt.h @@ -26,7 +26,9 @@ typedef struct { GameResult makeMove(TicTacToeGame* game, int row, int col); GameResult checkGameResult(const TicTacToeGame* game); GameResult initializeGame(TicTacToeGame* game); - +int getNumberOfMoves(const TicTacToeGame* game); +int BoardFull(const TicTacToeGame* game); +Player getCurrentPlayer(const TicTacToeGame* game);