Welcome to Minesweeper! This is a simple Minesweeper project developed in Go using the Ebitengine graphics library. Minesweeper is a classic game where the goal is to uncover all cells in a grid that do not contain mines, using numerical clues that indicate how many mines are adjacent to a cell.
- Intuitive and easy-to-play graphical interface.
- Classic Minesweeper functionality.
- Three difficulty levels: Easy, Medium, Hard.
- Developed in Go with Ebitengine, a lightweight engine for 2D games.
- Go 1.18 or higher.
- Ebitengine: Graphics library for Go.
-
Clone the repository
git clone https://github.com:joselrodrigues/minesweeper-go.git cd minesweeper-go -
Install dependencies
Make sure you have Go installed. You can install the Ebitengine library with the following command:
go get github.com/hajimehoshi/ebiten/v2
-
Run the project
Once the dependencies are installed, you can run the game with the command:
go run main.go