remove doubles

This commit is contained in:
nek0 2020-10-09 05:28:04 +02:00
parent 12b788af5e
commit bb364d6b1a
3 changed files with 2 additions and 18 deletions

View File

@ -20,7 +20,7 @@ executable pituicat
other-modules: Types
, Types.Application
, Types.Subsystems
, Types.Map
, Types.GameMap
-- other-extensions:
build-depends: base ^>=4.13.0.0
, affection

View File

@ -4,4 +4,4 @@ module Types
import Types.Application as T
import Types.Subsystems as T
import Types.Map as T
import Types.GameMap as T

View File

@ -1,16 +0,0 @@
module Types.Map where
import qualified Data.Matrix as Mat
import Linear
data Map = Map
{ mapLayers :: [(Word, Layer)] -- | (Index, Tile leyer)
, mapStart :: (Word, V2 Word) -- | (Layer index, Position)
}
type Layer = Mat.Matrix Tile
type Tile = V2 Float
type LayerDescriptor = FilePath