37 lines
614 B
Markdown
37 lines
614 B
Markdown
# MINEUR
|
|
|
|
Minesweeper game.
|
|
|
|
Oh no, my os doesn't comme with minesweeper preinstalled, let's make it myself.
|
|
|
|
# Keybind
|
|
|
|
- q (for azerty) : close app
|
|
- a (for qwerty) : close app
|
|
- escape : close app
|
|
- r : reset grid
|
|
- b : switch to beginner difficulty
|
|
- i : switch to intermediate difficulty
|
|
- e : switch to expert difficulty
|
|
- s : take a screenshot (not working everywhere, not sure why)
|
|
|
|
# building
|
|
|
|
You need to install [raylib v5](https://github.com/raysan5/raylib/releases/tag/5.0), but any version should work.
|
|
|
|
```console
|
|
$ make
|
|
```
|
|
|
|
to run
|
|
|
|
```console
|
|
$ ./mineur
|
|
```
|
|
|
|
or
|
|
|
|
```console
|
|
$ make run
|
|
```
|