meow
This commit is contained in:
parent
9b30b11e18
commit
0c53c11942
1 changed files with 7 additions and 2 deletions
|
@ -3,6 +3,11 @@ module Types.Map where
|
|||
import Linear
|
||||
|
||||
data Map = Map
|
||||
{ mapLayers :: [Layer]
|
||||
, mapStart :: V2 Word
|
||||
{ mapLayers :: [(Word, Layer)] -- | (Index, Tile leyer)
|
||||
, mapStart :: (Word, V2 Word) -- | (Layer index, Position)
|
||||
}
|
||||
|
||||
data Layer = Layer
|
||||
{
|
||||
|
||||
type LayerDescriptor = FilePath
|
||||
|
|
Loading…
Reference in a new issue