This commit is contained in:
2021-11-25 01:14:14 +00:00
parent 5b7d9fccf1
commit 0e87f340b4
2 changed files with 34 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE StrictData #-}
module Dodge.LevelGen.LevelStructure where
import Dodge.LevelGen.Data
--import Dodge.Tree.Compose.Data
import Dodge.Data
--import Data.Tree
import qualified Data.IntMap.Strict as IM
--import System.Random
data GenWorld = GenWorld
{ _gWorld :: World
, _gPlacements :: IM.IntMap [Placement]
}