summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2017-10-19 13:30:40 +0200 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2017-10-19 13:30:40 +0200 |
commit | e008855086d124f0de14eacc858ecb57d23e371c (patch) | |
tree | e3fe94dcf2966d17ac970b4b9cbbf6998c1f34a6 /elm/battlemap/src/Battlemap/Tile.elm | |
parent | ab299e08cee6ee9b2b122ce87b9bdab3b0dd637c (diff) |
Starting a more modular approach for the website.
Diffstat (limited to 'elm/battlemap/src/Battlemap/Tile.elm')
-rw-r--r-- | elm/battlemap/src/Battlemap/Tile.elm | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/elm/battlemap/src/Battlemap/Tile.elm b/elm/battlemap/src/Battlemap/Tile.elm deleted file mode 100644 index 255310a..0000000 --- a/elm/battlemap/src/Battlemap/Tile.elm +++ /dev/null @@ -1,25 +0,0 @@ -module Battlemap.Tile exposing - ( - Type, - get_location, - get_icon_id, - get_cost - ) - -import Battlemap.Location - -type alias Type = - { - location : Battlemap.Location.Type, - icon_id : String, - crossing_cost : Int - } - -get_location : Type -> Battlemap.Location.Type -get_location tile = tile.location - -get_icon_id : Type -> String -get_icon_id tile = tile.icon_id - -get_cost : Type -> Int -get_cost tile = tile.crossing_cost |