Browse Source

Function: A player's turn

remotes/origin/Ariana
Ariana Ginju 11 months ago
committed by David Moeller
parent
commit
1ec3169a5b
  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;
}
// 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