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); + + + + + + + + + + + + + + + + +