From e3a4b61201261607542b12b4a27c0898b5f68ee7 Mon Sep 17 00:00:00 2001 From: fdai7892 Date: Wed, 7 Feb 2024 20:00:53 +0100 Subject: [PATCH] header: Funktionsnamen Spielergebnis --- src/main/duellist-spielesammlung-projekt.h | 24 +++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/src/main/duellist-spielesammlung-projekt.h b/src/main/duellist-spielesammlung-projekt.h index 44e65ce..4e1bce2 100644 --- a/src/main/duellist-spielesammlung-projekt.h +++ b/src/main/duellist-spielesammlung-projekt.h @@ -20,4 +20,26 @@ typedef enum { typedef struct { Player board[3][3]; // Spielfeld Player currentPlayer; // Aktueller Spieler -} TicTacToeGame; \ No newline at end of file +} TicTacToeGame; + + +GameResult makeMove(TicTacToeGame* game, int row, int col); +GameResult checkGameResult(const TicTacToeGame* game); +GameResult initializeGame(TicTacToeGame* game); + + + + + + + + + + + + + + + + +