diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index f3c3149..baf17b9 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -42,6 +42,9 @@ GameResult makeMove(TicTacToeGame* game, int row, int col) { return result; } +Player getCurrentPlayer(const TicTacToeGame * game) { + return game->currentPlayer; +}