This commit is contained in:
nek0 2020-09-24 06:14:44 +02:00
parent 9b30b11e18
commit 0c53c11942

View file

@ -3,6 +3,11 @@ module Types.Map where
import Linear import Linear
data Map = Map data Map = Map
{ mapLayers :: [Layer] { mapLayers :: [(Word, Layer)] -- | (Index, Tile leyer)
, mapStart :: V2 Word , mapStart :: (Word, V2 Word) -- | (Layer index, Position)
} }
data Layer = Layer
{
type LayerDescriptor = FilePath