Added state #6, #7, #8

This commit is contained in:
Tibo De Peuter 2022-12-14 15:13:43 +01:00
parent f348a47281
commit 9e5f22458c
6 changed files with 93 additions and 30 deletions

View file

@ -6,10 +6,10 @@ module RPGEngine
) where
import Game
import RenderGame
import Render
import Graphics.Gloss (
Color(..)
, black
, white
, play
)
@ -25,7 +25,7 @@ winOffsets = (0, 0)
-- Game background color
bgColor :: Color
bgColor = black
bgColor = white
----------------------------------------------------------------------