This commit is contained in:
nek0 2020-09-24 06:14:44 +02:00
parent 9b30b11e18
commit 0c53c11942
1 changed files with 7 additions and 2 deletions

View File

@ -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