PWardell86 / minesweeper_python

Minesweeper game
1 stars 0 forks source link

Refactor tiles to contain their near tiles #7

Closed PWardell86 closed 2 years ago

PWardell86 commented 2 years ago

On tile generation, store the tiles near to each one. This removes the need to calculate the tiles near a tile every single time and will just be able to access it instead

PWardell86 commented 2 years ago

Fixed