Initial commit, also running version

This commit is contained in:
2025-05-21 09:23:08 +02:00
commit 73f562ca70
7 changed files with 477 additions and 0 deletions

9
constants.go Normal file
View File

@@ -0,0 +1,9 @@
package minesweeper
import "image/color"
var (
OPEN_COLOR = color.RGBA{200, 200, 200, 255}
DARK_COLOR = color.RGBA{20, 20, 20, 255}
FLAG_COLOR = color.RGBA{0, 255, 0, 255}
)