summaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/shared/battle-characters/BattleCharacters/Struct')
-rw-r--r-- | src/shared/battle-characters/BattleCharacters/Struct/Character.elm | 3 | ||||
-rw-r--r-- | src/shared/battle-characters/BattleCharacters/Struct/Glyph.elm | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/shared/battle-characters/BattleCharacters/Struct/Character.elm b/src/shared/battle-characters/BattleCharacters/Struct/Character.elm index b91817c..e3ba148 100644 --- a/src/shared/battle-characters/BattleCharacters/Struct/Character.elm +++ b/src/shared/battle-characters/BattleCharacters/Struct/Character.elm @@ -18,7 +18,8 @@ module BattleCharacters.Struct.Character exposing dirty_switch_weapons, decoder, encode, - resolve + resolve, + to_unresolved ) -- Elm ------------------------------------------------------------------------- diff --git a/src/shared/battle-characters/BattleCharacters/Struct/Glyph.elm b/src/shared/battle-characters/BattleCharacters/Struct/Glyph.elm index c277b20..4cadc6b 100644 --- a/src/shared/battle-characters/BattleCharacters/Struct/Glyph.elm +++ b/src/shared/battle-characters/BattleCharacters/Struct/Glyph.elm @@ -36,7 +36,7 @@ type alias Ref = String -------------------------------------------------------------------------------- -- EXPORTED -------------------------------------------------------------------- -------------------------------------------------------------------------------- -get_id : Type -> String +get_id : Type -> Ref get_id g = g.id get_name : Type -> String |