added README.md info
parent
422ab6e207
commit
db1bf77482
|
@ -1,5 +1,5 @@
|
||||||
[package]
|
[package]
|
||||||
name = "RustSweeper"
|
name = "rust_sweeper"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["kirbylife <gabriel13m@gmail.com>"]
|
authors = ["kirbylife <gabriel13m@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
20
README.md
20
README.md
|
@ -1,2 +1,22 @@
|
||||||
# rust_sweeper
|
# rust_sweeper
|
||||||
Minesweeper made with rust and ncurses
|
Minesweeper made with rust and ncurses
|
||||||
|
|
||||||
|
## Dependencies
|
||||||
|
- ncurses
|
||||||
|
- rand
|
||||||
|
|
||||||
|
## How to execute
|
||||||
|
|
||||||
|
Simply execute
|
||||||
|
```
|
||||||
|
cargo run
|
||||||
|
```
|
||||||
|
|
||||||
|
## Controls
|
||||||
|
|
||||||
|
|key|action|
|
||||||
|
|---|---|
|
||||||
|
|Arrow keys|move arround the board|
|
||||||
|
|F|flag a box|
|
||||||
|
|Space|reveal a box|
|
||||||
|
|q|exit|
|
||||||
|
|
Loading…
Reference in New Issue