Browse Source

Function: A player's turn

remotes/origin/fdai7775-main-patch-54732
fdai7775 11 months ago
parent
commit
d75ff5cdbf
  1. 8
      src/main/c/GameTic_Tac_Toe/game.c

8
src/main/c/GameTic_Tac_Toe/game.c

@ -44,3 +44,11 @@ int isBoardFull() {
} }
return 1; return 1;
} }
// Funktion zum Zug eines Spielers
void makeMove() {
int choice;
printf("Spieler %c, wähle eine Zahl (1-9): ", currentPlayer);
scanf("%d", &choice);
Loading…
Cancel
Save