diff --git a/pituicat.cabal b/pituicat.cabal index 665f029..4383cb4 100644 --- a/pituicat.cabal +++ b/pituicat.cabal @@ -20,7 +20,7 @@ executable pituicat other-modules: Types , Types.Application , Types.Subsystems - , Types.GameMap + , Types.Map , Types.Texture , Types.Graphics , Types.Graphics.VertexArray diff --git a/src/Types.hs b/src/Types.hs index 828ce2d..b6690e4 100644 --- a/src/Types.hs +++ b/src/Types.hs @@ -4,7 +4,7 @@ module Types import Types.Application as T import Types.Subsystems as T -import Types.GameMap as T +import Types.Map as T import Types.Texture as T import Types.Graphics as T import Types.Util as T diff --git a/src/Types/Application.hs b/src/Types/Application.hs index d15a576..8e50bc5 100644 --- a/src/Types/Application.hs +++ b/src/Types/Application.hs @@ -15,7 +15,7 @@ import qualified Data.Text as T -- internal imports import Types.Subsystems -import Types.GameMap +import Types.Map import Types.Util import Classes.Scene diff --git a/src/Types/GameMap.hs b/src/Types/Map.hs similarity index 98% rename from src/Types/GameMap.hs rename to src/Types/Map.hs index d10a2f2..159d55c 100644 --- a/src/Types/GameMap.hs +++ b/src/Types/Map.hs @@ -1,4 +1,4 @@ -module Types.GameMap where +module Types.Map where import Data.Vector