mirror of
https://github.com/Fluffy-Bean/ColouringApp.git
synced 2025-05-14 07:32:16 +00:00
24 lines
327 B
Go
24 lines
327 B
Go
package application
|
|
|
|
const (
|
|
WindowTitle = "Colouring App"
|
|
WindowWidth = 800
|
|
WindowHeight = 600
|
|
WindowFPS = 60
|
|
)
|
|
|
|
const (
|
|
ScenePlayerData = iota
|
|
SceneTitle
|
|
SceneOptions
|
|
SceneGame
|
|
)
|
|
|
|
const (
|
|
DirAssets = "./assets/"
|
|
DirPlayerData = "./playerData/"
|
|
)
|
|
|
|
var CurrentScene = ScenePlayerData
|
|
|
|
var ShouldQuit = false
|