From 9e233b7cd4df04729e08eac912085dccb9d2e6ed Mon Sep 17 00:00:00 2001 From: fdai7892 Date: Wed, 7 Feb 2024 20:02:57 +0100 Subject: [PATCH] header: Funktionsnamen --- src/main/duellist-spielesammlung-projekt.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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);