mirror of
https://github.com/Fluffy-Bean/ColouringApp.git
synced 2025-06-01 07:53:12 +00:00
Bluh
This commit is contained in:
parent
2e2ae6b9a0
commit
dc7506c947
7 changed files with 46 additions and 35 deletions
|
@ -1,24 +1,37 @@
|
|||
package application
|
||||
|
||||
const (
|
||||
WindowTitle = "Colouring App"
|
||||
// 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 = 60
|
||||
|
||||
// WindowFPS Max FPS the game should run at, used to calucalte delta time
|
||||
WindowFPS = 60
|
||||
)
|
||||
|
||||
// Scene IDs used to determine which scene to run
|
||||
const (
|
||||
ScenePlayerData = iota
|
||||
SceneTitle
|
||||
SceneOptions
|
||||
SceneGallery
|
||||
SceneDraw
|
||||
SceneGame
|
||||
)
|
||||
|
||||
// Directories used to store assets
|
||||
const (
|
||||
DirAssets = "./assets/"
|
||||
DirPlayerData = "./playerData/"
|
||||
)
|
||||
|
||||
var CurrentScene = ScenePlayerData
|
||||
var (
|
||||
// ShouldQuit is used to determine if the game should quit
|
||||
ShouldQuit = false
|
||||
|
||||
var ShouldQuit = false
|
||||
// CurrentScene is the scene that is currently running
|
||||
CurrentScene = ScenePlayerData
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue