summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2019-03-15 18:41:39 +0100 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2019-03-15 18:41:39 +0100 |
commit | 8103bf80277b759bb9c3b1e032612721f132f256 (patch) | |
tree | a1b1858483281e61a0dcb9cb42fb6df38214c06a /src/battle/src/View | |
parent | 6678cfe464ed9ee595f4f3dd7398dec1416454c9 (diff) |
[Broken] Got 'battle' to compile again.
Diffstat (limited to 'src/battle/src/View')
-rw-r--r-- | src/battle/src/View/Map.elm | 7 | ||||
-rw-r--r-- | src/battle/src/View/SubMenu/Status/TileInfo.elm | 4 |
2 files changed, 5 insertions, 6 deletions
diff --git a/src/battle/src/View/Map.elm b/src/battle/src/View/Map.elm index 1de8472..dc0c770 100644 --- a/src/battle/src/View/Map.elm +++ b/src/battle/src/View/Map.elm @@ -12,12 +12,11 @@ import List -- Shared ---------------------------------------------------------------------- import Util.Html --- Battle ---------------------------------------------------------------------- -import View.BattleMap.Tile - -- Battle Map ------------------------------------------------------------------ import BattleMap.Struct.Map +import BattleMap.View.Tile + -- Local Module ---------------------------------------------------------------- import Constants.UI @@ -64,7 +63,7 @@ get_tiles_html map = ) ] (List.map - (View.BattleMap.Tile.get_html False) + (BattleMap.View.Tile.get_html False) (Array.toList (BattleMap.Struct.Map.get_tiles map)) ) ) diff --git a/src/battle/src/View/SubMenu/Status/TileInfo.elm b/src/battle/src/View/SubMenu/Status/TileInfo.elm index f8b2b82..a045caf 100644 --- a/src/battle/src/View/SubMenu/Status/TileInfo.elm +++ b/src/battle/src/View/SubMenu/Status/TileInfo.elm @@ -18,7 +18,7 @@ import BattleMap.Struct.Map import BattleMap.Struct.Tile import BattleMap.Struct.TileInstance -import BattleMap.View.Map.Tile +import BattleMap.View.Tile -- Local Module ---------------------------------------------------------------- import Constants.Movement @@ -45,7 +45,7 @@ get_icon tile = ) ) ] - (BattleMap.View.Map.Tile.get_content_html tile) + (BattleMap.View.Tile.get_content_html tile) ) get_name : ( |