summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/battle')
-rw-r--r--src/battle/src/Struct/Tile.elm10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/battle/src/Struct/Tile.elm b/src/battle/src/Struct/Tile.elm
index 37a4e0d..459e139 100644
--- a/src/battle/src/Struct/Tile.elm
+++ b/src/battle/src/Struct/Tile.elm
@@ -3,7 +3,6 @@ module Struct.Tile exposing
Ref,
VariantID,
Type,
- new,
get_id,
get_name,
get_cost,
@@ -45,15 +44,6 @@ type alias Type =
--------------------------------------------------------------------------------
-- EXPORTED --------------------------------------------------------------------
--------------------------------------------------------------------------------
-new : Ref -> String -> Int -> Struct.Omnimods.Type -> Type
-new id name crossing_cost omnimods =
- {
- id = id,
- name = name,
- crossing_cost = crossing_cost,
- omnimods = omnimods
- }
-
get_id : Type -> Ref
get_id tile = tile.id