pituicat/src/Types/Map.hs

14 lines
235 B
Haskell
Raw Normal View History

2020-09-02 06:56:54 +00:00
module Types.Map where
2020-09-23 23:26:47 +00:00
import Linear
data Map = Map
2020-09-24 04:14:44 +00:00
{ mapLayers :: [(Word, Layer)] -- | (Index, Tile leyer)
, mapStart :: (Word, V2 Word) -- | (Layer index, Position)
2020-09-23 23:26:47 +00:00
}
2020-09-24 04:14:44 +00:00
data Layer = Layer
{
type LayerDescriptor = FilePath