A clone of the good old Minesweeper game, trying to keep the original style as much as possible. Powered by raylib-go.
Just launch the binary and play!
$ ./minesweeperYou can also specify the size of the board and the number of mines.
$ ./minesweeper -r 30 -c 20 -m 100where, -r is the number of rows; -c is the number of columns; -m is the number of mines.
$ go build -o minesweeperOn Linux, you might want to install the following packages (e.g, Ubuntu):
- libgl-dev
- libxi-dev
