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