blob: 53d60fec5218881481ca0c22a6e87f09bb7811de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# A minesweeper implementation to play around with Hare and Raylib
Just for fun
## Requirements
* [Hare](https://harelang.org)
* All that is required to build [raylib](https://www.raylib.com) from source
(see the
[raylib wiki](https://github.com/raysan5/raylib/wiki/Working-on-GNU-Linux))
* GNU make
## Build and run
Just type:
```
make
./minesweeper
```
Alternatively, you can build and run directly with:
```
make run
```
Tested on Fedora Linux (x86-64) and OpenBSD (x86-64). May work on other systems too.
|