pituicat/src/Types/Map.hs
2020-09-24 06:14:44 +02:00

14 lines
235 B
Haskell

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