cmccormack / minesweeper

Simple Minesweeper Game in JS
MIT License
1 stars 3 forks source link

Create game board with basic styling #6

Open cmccormack opened 5 years ago

cmccormack commented 5 years ago

Game board can be any size but we should try to limit it for now for testing. We can add additional sizes in the form of a dropdown or inputs as well

bradtaniguchi commented 5 years ago

According to the minesweeper wiki, the game board had the following mines and dimensions:

I think we can start with one of these presets, then add support for the other ones, or just jump to custom settings. ref

cmccormack commented 5 years ago

@bradtaniguchi Yeah I think presets are nice to have but we should have the functionality to build any size we want dynamically.