summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'elm/battlemap/src/Battlemap/Tile.elm')
-rw-r--r--elm/battlemap/src/Battlemap/Tile.elm25
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