mirror of
https://github.com/Fluffy-Bean/ColouringApp.git
synced 2025-01-28 07:18:23 +00:00
25 lines
327 B
Go
25 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
|