mirror of
https://github.com/Fluffy-Bean/ColouringApp.git
synced 2025-05-14 07:32:16 +00:00
36 lines
765 B
Go
36 lines
765 B
Go
package application
|
|
|
|
const (
|
|
// WindowTitle used as the Windows Title but also used for the name of the game
|
|
WindowTitle = "Colouring App"
|
|
|
|
// Defines the window proportions
|
|
WindowWidth = 800
|
|
WindowHeight = 600
|
|
|
|
// WindowFPS Max FPS the game should run at, used to calucalte delta time
|
|
WindowFPS = 144
|
|
)
|
|
|
|
// Scene IDs used to determine which scene to run
|
|
const (
|
|
ScenePlayerData = iota
|
|
SceneTitle
|
|
SceneOptions
|
|
SceneGallery
|
|
SceneDrawing
|
|
)
|
|
|
|
// Directories used to store assets
|
|
const (
|
|
DirAssets = "./assets/"
|
|
DirUserData = "./userData/"
|
|
)
|
|
|
|
var (
|
|
// ShouldQuit is used to determine if the game should quit
|
|
ShouldQuit = false
|
|
|
|
// CurrentScene is the scene that is currently running, defaults to loading player data
|
|
CurrentScene = ScenePlayerData
|
|
)
|