Closes #7
This commit is contained in:
parent
1dc8aac4c7
commit
becd305e01
2 changed files with 12 additions and 6 deletions
|
@ -17,13 +17,17 @@ winOffsets = (0, 0)
|
|||
|
||||
-- Game background color
|
||||
bgColor :: Color
|
||||
bgColor = white
|
||||
bgColor = makeColor (37 / 256) (19 / 256) (26 / 256) 1
|
||||
|
||||
-- Text color
|
||||
textColor :: Color
|
||||
textColor = white
|
||||
|
||||
-- Default scale
|
||||
zoom :: Float
|
||||
zoom = 5.0
|
||||
zoom = 5
|
||||
|
||||
-- UI scale
|
||||
-- UI scale, number between 0 (small) and 1 (big)
|
||||
uizoom :: Float
|
||||
uizoom = 0.5
|
||||
|
||||
|
|
Reference in a new issue