| 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/shared/battle-map/BattleMap/View/Tile.elm | |
| parent | 6678cfe464ed9ee595f4f3dd7398dec1416454c9 (diff) | |
[Broken] Got 'battle' to compile again.
Diffstat (limited to 'src/shared/battle-map/BattleMap/View/Tile.elm')
| -rw-r--r-- | src/shared/battle-map/BattleMap/View/Tile.elm | 10 | 
1 files changed, 8 insertions, 2 deletions
diff --git a/src/shared/battle-map/BattleMap/View/Tile.elm b/src/shared/battle-map/BattleMap/View/Tile.elm index 6039ff4..d2bf044 100644 --- a/src/shared/battle-map/BattleMap/View/Tile.elm +++ b/src/shared/battle-map/BattleMap/View/Tile.elm @@ -1,4 +1,9 @@ -module BattleMap.View.Tile exposing (get_html, get_html_extra, get_content_html) +module BattleMap.View.Tile exposing +   ( +      get_html, +      get_html_with_extra, +      get_content_html +   )  -- Elm -------------------------------------------------------------------------  import Html @@ -66,6 +71,7 @@ get_content_html tile =           ]           []        ) +      ::        (Html.div           [              (Html.Attributes.class "tile-icon-bg"), @@ -173,7 +179,7 @@ get_html display_cost tile =  get_html_with_extra : (        Bool -> -      (List Html.Attributes.Attribute) -> +      (List (Html.Attribute Struct.Event.Type)) ->        BattleMap.Struct.TileInstance.Type ->        (Html.Html Struct.Event.Type)     )  | 


