Is your feature request related to a problem? Please describe
Continuing with creating mini-games, minesweeper should be added.
Describe the solution you'd like
A fully functional minesweeper game.
Describe alternatives you've considered
none
Additional context
34 has added an empty project for this.
The internal game state can be a simple 2D array of booleans.
The game state that is presented to the player can be represented as a 2D array of nullable integers (or bytes).
Null represents unknown (aka, has not been clicked on)
Affected Project
Minesweeper
Is your feature request related to a problem? Please describe
Continuing with creating mini-games, minesweeper should be added.
Describe the solution you'd like
A fully functional minesweeper game.
Describe alternatives you've considered
none
Additional context
34 has added an empty project for this.
The internal game state can be a simple 2D array of booleans. The game state that is presented to the player can be represented as a 2D array of nullable integers (or bytes).