Fix dependency loop
This commit is contained in:
parent
b7278d6afc
commit
f529fc5237
25 changed files with 251 additions and 199 deletions
|
@ -1,14 +1,15 @@
|
|||
module RPGEngine.Render.Win
|
||||
module RPGEngine.Render.Win
|
||||
( renderWin
|
||||
) where
|
||||
|
||||
import RPGEngine.Render.Core ( Renderer )
|
||||
import RPGEngine.Render.Core (Renderer)
|
||||
|
||||
import RPGEngine.Data (State)
|
||||
|
||||
import RPGEngine.Data ( State )
|
||||
import Graphics.Gloss (text)
|
||||
|
||||
----------------------------------------------------------------------
|
||||
------------------------------ Exported ------------------------------
|
||||
|
||||
-- TODO
|
||||
renderWin :: Renderer State
|
||||
renderWin _ = text "Win"
|
||||
renderWin _ = text "You win!\nPress any key to return to the menu."
|
Reference in a new issue