summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2018-08-03 22:00:44 +0200
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2018-08-03 22:00:44 +0200
commitdd08a1e28273db632ca3b5fe4b72c57085f01429 (patch)
tree18304a77419ecc374ac42f52aa3efd88ae8be641 /src/map-editor
parentaee23306060ba664e32e6c8463fdf5fb911881a7 (diff)
Updates to the new tile format (again).
Diffstat (limited to 'src/map-editor')
-rw-r--r--src/map-editor/src/View/Map.elm2
-rw-r--r--src/map-editor/src/View/SubMenu.elm3
-rw-r--r--src/map-editor/src/View/SubMenu/Status.elm3
-rw-r--r--src/map-editor/src/View/SubMenu/Status/TileInfo.elm1
-rw-r--r--src/map-editor/src/View/SubMenu/Tiles.elm2
-rw-r--r--src/map-editor/src/View/Toolbox.elm4
6 files changed, 0 insertions, 15 deletions
diff --git a/src/map-editor/src/View/Map.elm b/src/map-editor/src/View/Map.elm
index 0f75ad4..b28f5c2 100644
--- a/src/map-editor/src/View/Map.elm
+++ b/src/map-editor/src/View/Map.elm
@@ -18,8 +18,6 @@ import Struct.Model
import Struct.Toolbox
import Struct.UI
-import Util.Html
-
import View.Map.Tile
--------------------------------------------------------------------------------
diff --git a/src/map-editor/src/View/SubMenu.elm b/src/map-editor/src/View/SubMenu.elm
index 75b5101..6962620 100644
--- a/src/map-editor/src/View/SubMenu.elm
+++ b/src/map-editor/src/View/SubMenu.elm
@@ -1,11 +1,8 @@
module View.SubMenu exposing (get_html)
-- Elm -------------------------------------------------------------------------
-import Array
-
import Html
import Html.Attributes
-import Html.Lazy
-- Battlemap -------------------------------------------------------------------
import Struct.Event
diff --git a/src/map-editor/src/View/SubMenu/Status.elm b/src/map-editor/src/View/SubMenu/Status.elm
index 5c47552..795b603 100644
--- a/src/map-editor/src/View/SubMenu/Status.elm
+++ b/src/map-editor/src/View/SubMenu/Status.elm
@@ -1,11 +1,8 @@
module View.SubMenu.Status exposing (get_html)
-- Elm -------------------------------------------------------------------------
-import Array
-
import Html
import Html.Attributes
-import Html.Lazy
-- Struct.Battlemap -------------------------------------------------------------------
import Struct.Event
diff --git a/src/map-editor/src/View/SubMenu/Status/TileInfo.elm b/src/map-editor/src/View/SubMenu/Status/TileInfo.elm
index 194f858..91c4b48 100644
--- a/src/map-editor/src/View/SubMenu/Status/TileInfo.elm
+++ b/src/map-editor/src/View/SubMenu/Status/TileInfo.elm
@@ -7,7 +7,6 @@ import Html
import Html.Attributes
-- Map Editor ------------------------------------------------------------------
-import Constants.IO
import Constants.Movement
import Struct.Map
diff --git a/src/map-editor/src/View/SubMenu/Tiles.elm b/src/map-editor/src/View/SubMenu/Tiles.elm
index 67a1f50..4c5c71a 100644
--- a/src/map-editor/src/View/SubMenu/Tiles.elm
+++ b/src/map-editor/src/View/SubMenu/Tiles.elm
@@ -6,8 +6,6 @@ import Html.Attributes
import Html.Events
-- Battlemap -------------------------------------------------------------------
-import Constants.IO
-
import Struct.Event
import Struct.Tile
diff --git a/src/map-editor/src/View/Toolbox.elm b/src/map-editor/src/View/Toolbox.elm
index 17ca0fd..cea1192 100644
--- a/src/map-editor/src/View/Toolbox.elm
+++ b/src/map-editor/src/View/Toolbox.elm
@@ -6,14 +6,10 @@ import Html.Attributes
import Html.Events
-- Struct.Battlemap -------------------------------------------------------------------
-import Constants.IO
-
import Struct.Event
import Struct.Tile
import Struct.Toolbox
-import Util.Html
-
import View.Map.Tile
--------------------------------------------------------------------------------