summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2019-03-15 23:10:22 +0100
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2019-03-15 23:10:22 +0100
commita3c380b2813c9928a2ee600c276295c7803e9e66 (patch)
tree825d2ce62f4bb223bd26e9441f266a29fa61f0d0 /src/map-editor/src/Struct/UI.elm
parent0a2aa713a3e9babfeab8be394cd7066265184458 (diff)
Got everything to compile again.
Diffstat (limited to 'src/map-editor/src/Struct/UI.elm')
-rw-r--r--src/map-editor/src/Struct/UI.elm10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/map-editor/src/Struct/UI.elm b/src/map-editor/src/Struct/UI.elm
index 7af92a6..a027b26 100644
--- a/src/map-editor/src/Struct/UI.elm
+++ b/src/map-editor/src/Struct/UI.elm
@@ -19,8 +19,8 @@ module Struct.UI exposing
set_previous_action
)
--- Map Editor ------------------------------------------------------------------
-import Struct.Location
+-- Battle Map ------------------------------------------------------------------
+import BattleMap.Struct.Location
--------------------------------------------------------------------------------
-- TYPES -----------------------------------------------------------------------
@@ -29,9 +29,10 @@ type Tab =
StatusTab
| TilesTab
| SettingsTab
+ | MarkersTab
type Action =
- SelectedLocation Struct.Location.Ref
+ SelectedLocation BattleMap.Struct.Location.Ref
type alias Type =
{
@@ -80,11 +81,12 @@ to_string tab =
case tab of
StatusTab -> "Status"
TilesTab -> "Tiles"
+ MarkersTab -> "Markers"
SettingsTab -> "Settings"
get_all_tabs : (List Tab)
get_all_tabs =
- [StatusTab, TilesTab, SettingsTab]
+ [StatusTab, TilesTab, MarkersTab, SettingsTab]
-- Previous Action -------------------------------------------------------------
set_previous_action : (Maybe Action) -> Type -> Type