Setup
This commit is contained in:
parent
0720f3b719
commit
d4fbcda73b
13 changed files with 412 additions and 169 deletions
22
lib/RPGEngine/Parse/Game.hs
Normal file
22
lib/RPGEngine/Parse/Game.hs
Normal file
|
@ -0,0 +1,22 @@
|
|||
module RPGEngine.Parse.Game where
|
||||
|
||||
import RPGEngine.Data
|
||||
import RPGEngine.Parse.StructureElement (StructureElement)
|
||||
|
||||
-------------------------------- Game --------------------------------
|
||||
|
||||
-- TODO
|
||||
structureToGame :: StructureElement -> Game
|
||||
structureToGame = undefined
|
||||
|
||||
------------------------------- Player -------------------------------
|
||||
|
||||
-- TODO
|
||||
structureToPlayer :: StructureElement -> Player
|
||||
structureToPlayer = undefined
|
||||
|
||||
------------------------------- Levels -------------------------------
|
||||
|
||||
-- TODO
|
||||
structureToLevels :: StructureElement -> [Level]
|
||||
structureToLevels = undefined
|
Reference in a new issue