| summaryrefslogtreecommitdiff | 
diff options
| author | nsensfel <SpamShield0@noot-noot.org> | 2019-03-15 18:16:55 +0100 | 
|---|---|---|
| committer | nsensfel <SpamShield0@noot-noot.org> | 2019-03-15 18:16:55 +0100 | 
| commit | 6678cfe464ed9ee595f4f3dd7398dec1416454c9 (patch) | |
| tree | 2700668874e13a81ec7467dcf26a1d246caa23ff /src/battle/src/View/Map/Character.elm | |
| parent | 24efb898f526e0aa02a0e15b74436da8ba166cac (diff) | |
[Broken] Starting a code refactoring...
Diffstat (limited to 'src/battle/src/View/Map/Character.elm')
| -rw-r--r-- | src/battle/src/View/Map/Character.elm | 13 | 
1 files changed, 8 insertions, 5 deletions
| diff --git a/src/battle/src/View/Map/Character.elm b/src/battle/src/View/Map/Character.elm index af41050..6031cff 100644 --- a/src/battle/src/View/Map/Character.elm +++ b/src/battle/src/View/Map/Character.elm @@ -5,16 +5,19 @@ import Html  import Html.Attributes  import Html.Events --- Battle ---------------------------------------------------------------------- -import Constants.UI - +-- Shared ----------------------------------------------------------------------  import Util.Html +-- Battle Characters ----------------------------------------------------------- +import BattleCharacters.Struct.Portrait + +-- Local Module ---------------------------------------------------------------- +import Constants.UI +  import Struct.Character  import Struct.CharacterTurn  import Struct.Event  import Struct.Model -import Struct.Portrait  import Struct.TurnResult  import Struct.TurnResultAnimator  import Struct.UI @@ -147,7 +150,7 @@ get_head_html char =           (Html.Attributes.class "character-icon-head"),           (Html.Attributes.class              ("asset-character-icon-" ++ -               (Struct.Portrait.get_icon_id +               (BattleCharacters.Struct.Portrait.get_icon_id                    (Struct.Character.get_portrait char)                 )              ) | 


