diff --git a/src/main/c/Georg/tictactoe.c b/src/main/c/Georg/tictactoe.c index 6888e7e..43ff038 100644 --- a/src/main/c/Georg/tictactoe.c +++ b/src/main/c/Georg/tictactoe.c @@ -189,6 +189,8 @@ void handleGame(){ int* params = getMarkerParameters( input ); setBoardMarker( GAME.board, params ); free(params); + + printBoard(); } } @@ -201,6 +203,8 @@ int startGame( int code ){ bool board[BORAD_SIZE][BORAD_SIZE]; initializeBoard( board ); + printBoard(); + while( GAME.currentState == 1 ){ handleGame(); }