From dc30bb10e4ef004484d9dcfa265cda3ce5e9cd80 Mon Sep 17 00:00:00 2001 From: fdai7892 Date: Wed, 7 Feb 2024 19:59:10 +0100 Subject: [PATCH] header: typedef enum Spieler und typedef struct Spiel --- src/main/duellist-spielesammlung-projekt.h | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/main/duellist-spielesammlung-projekt.h b/src/main/duellist-spielesammlung-projekt.h index 1e34b56..44e65ce 100644 --- a/src/main/duellist-spielesammlung-projekt.h +++ b/src/main/duellist-spielesammlung-projekt.h @@ -8,4 +8,16 @@ typedef enum { GAME_WIN, GAME_DRAW, GAME_IN_PROGRESS -} GameResult; \ No newline at end of file +} GameResult; + +typedef enum { + EMPTY, + PLAYER_X, + PLAYER_O +} Player; + + +typedef struct { + Player board[3][3]; // Spielfeld + Player currentPlayer; // Aktueller Spieler +} TicTacToeGame; \ No newline at end of file