Minesweeper game (Rust)
A: Move left
D: Move right
S: Move down
W: Move top
E: Defuse cell
F: Flag cell
Q: Exit
Use Rust-installation to install Rust. Or Rust-other-installation-methods if you are using windows.
Go to the game-minesweeper folder
cd game-minesweeper
Install deps
cargo install --path .
Run inside game-minesweeper folder
cargo run
Open ./game-minesweeper/src/config.rs
and change GAME_SPEED
value:
example
pub const GAME_SPEED: u16 = 60;
To
pub const GAME_SPEED: u16 = 10;
or anything
MIT. >>> LICENSE