blob: 1b867d8d2b94e3bd83f37cf20ea6fc5e6337491c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
![image](https://danieljon.es/media/minesweep1.png)
Simple Minesweeper written in C++ using the fox toolkit.
You need FOX http://www.fox-toolkit.org/. On arch you can install the 'fox' package.
Compile:
```
cmake CMakeLists.txt
make
```
binary is in bin/
Right click on a tile to flag it.
Currently when a game ends you need to restart the program for a new one.
You can change the width, height and mine count in the MainWindow constructor, not added to the gui yet.
|