├── .gitignore ├── README.md ├── ols.json ├── screencast.webm ├── screenshot.png └── src ├── main.odin └── sprite.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaultier/minesweeper-from-scratch/HEAD/README.md -------------------------------------------------------------------------------- /ols.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaultier/minesweeper-from-scratch/HEAD/ols.json -------------------------------------------------------------------------------- /screencast.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaultier/minesweeper-from-scratch/HEAD/screencast.webm -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaultier/minesweeper-from-scratch/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/main.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaultier/minesweeper-from-scratch/HEAD/src/main.odin -------------------------------------------------------------------------------- /src/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaultier/minesweeper-from-scratch/HEAD/src/sprite.png --------------------------------------------------------------------------------