mirror of
https://github.com/Fluffy-Bean/ColouringApp.git
synced 2025-05-25 04:44:53 +00:00
Init
This commit is contained in:
parent
09446517cf
commit
1b05e0364b
8 changed files with 266 additions and 0 deletions
18
application/globalVars.go
Normal file
18
application/globalVars.go
Normal file
|
@ -0,0 +1,18 @@
|
|||
package application
|
||||
|
||||
const (
|
||||
WindowTitle = "Colouring App"
|
||||
WindowWidth = 800
|
||||
WindowHeight = 600
|
||||
WindowFPS = 60
|
||||
)
|
||||
|
||||
const (
|
||||
SceneTitle = iota
|
||||
SceneOptions
|
||||
SceneGame
|
||||
)
|
||||
|
||||
var CurrentScene = SceneTitle
|
||||
|
||||
var ShouldQuit = false
|
Loading…
Add table
Add a link
Reference in a new issue