mirror of
https://github.com/Fluffy-Bean/ColouringApp.git
synced 2024-12-28 18:16:07 +00:00
26 lines
350 B
Go
26 lines
350 B
Go
package application
|
|
|
|
var (
|
|
WindowTitle = "Colouring App"
|
|
WindowWidth int32 = 800
|
|
WindowHeight int32 = 600
|
|
WindowFPS int32 = 144
|
|
)
|
|
|
|
const (
|
|
ScenePlayerData = iota
|
|
SceneTitle
|
|
SceneOptions
|
|
SceneDrawing
|
|
)
|
|
|
|
const (
|
|
DirAssets = "./assets/"
|
|
DirUserData = "./userData/"
|
|
)
|
|
|
|
var (
|
|
ShouldQuit = false
|
|
CurrentScene = ScenePlayerData
|
|
)
|