summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2019-03-06 18:44:57 +0100 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2019-03-06 18:44:57 +0100 |
commit | 24efb898f526e0aa02a0e15b74436da8ba166cac (patch) | |
tree | 5d5e6e682e0012787255de520dd29292e793d6ad /src/battle | |
parent | b05eb97d89e690737418ca2aa2e49e9c9da83184 (diff) |
Impr. MapEd tile focus, CSS factoring.
Diffstat (limited to 'src/battle')
-rw-r--r-- | src/battle/src/Struct/Tile.elm | 10 |
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 |