This is a hobby project with the purpose of learning the Rust programming language.
Run the .exe with three arguments, in the following order and type: Columns:usize Rows:usize MineConcentration:f64.
mine_sweeper.exe 60 30 0.15
This creates a game with 60 columns and 30 rows where roughly 15% of the cells are mines.
Left click to reveal a cell.
Right click to flag a cell.
You win when all mines have been flagged, victory is shown by the screen becoming green.
You lose by revealing a mine, this is shown by a red screen.
- Add instructions for what the colors mean.
- Implement AI versions.