This commit is contained in:
Michał Gdula 2024-01-08 13:29:40 +00:00
parent 09446517cf
commit 1b05e0364b
8 changed files with 266 additions and 0 deletions

18
application/globalVars.go Normal file
View file

@ -0,0 +1,18 @@
package application
const (
WindowTitle = "Colouring App"
WindowWidth = 800
WindowHeight = 600
WindowFPS = 60
)
const (
SceneTitle = iota
SceneOptions
SceneGame
)
var CurrentScene = SceneTitle
var ShouldQuit = false