This is a Minesweeper game for fun, implemented using Java with Gradle and Processing library.
- Java 8 or higher
- Gradle (or use the Gradle wrapper)
- Processing Core Library
To run with Gradle:
gradle run
- Left Click: Reveal tile
- Right Click: Flag/unflag tile
- The
App.java
handles initialisation, user input, game loop, and rendering. - The game uses a 2D array of
Tile
objects for board logic. - Mine count and colour configurations are stored in
mineCountColour
.
Enjoy playing this version of Minesweeper!