Browse Source

header: typedef enum Spieler und typedef struct Spiel

remotes/origin/homan
fdai7892 11 months ago
parent
commit
dc30bb10e4
  1. 14
      src/main/duellist-spielesammlung-projekt.h

14
src/main/duellist-spielesammlung-projekt.h

@ -8,4 +8,16 @@ typedef enum {
GAME_WIN,
GAME_DRAW,
GAME_IN_PROGRESS
} GameResult;
} GameResult;
typedef enum {
EMPTY,
PLAYER_X,
PLAYER_O
} Player;
typedef struct {
Player board[3][3]; // Spielfeld
Player currentPlayer; // Aktueller Spieler
} TicTacToeGame;
Loading…
Cancel
Save