Browse Source

startgame

remotes/origin/Daniel
Daniel M 11 months ago
parent
commit
07f04b9167
  1. 11
      src/main/duellist-spielesammlung-projekt.c

11
src/main/duellist-spielesammlung-projekt.c

@ -310,6 +310,17 @@ int minesweeper() {
char** minefield = create_minefield(height, width, unknown_character);
char** mines = create_minefield(height, width, 0);
distribute_mines(mines, height, width, num_mines);
while (1) {
printf("Enter 'row column' to uncover (to quit enter '0 0'):\n");
if (scanf("%d %d", &row, &column) != 2) {
printf("Incorrect input!\n");
return 1;
}
row--;
column--;
return 1;
}
Loading…
Cancel
Save