summaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'client/elm/battlemap/src/Battlemap/Location.elm')
-rw-r--r-- | client/elm/battlemap/src/Battlemap/Location.elm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/elm/battlemap/src/Battlemap/Location.elm b/client/elm/battlemap/src/Battlemap/Location.elm index 2fa6d5d..5c7bc48 100644 --- a/client/elm/battlemap/src/Battlemap/Location.elm +++ b/client/elm/battlemap/src/Battlemap/Location.elm @@ -1,6 +1,6 @@ module Battlemap.Location exposing (..) -import Battlemap.Direction exposing (..) +import Battlemap.Direction exposing (Direction(..)) type alias Location = { @@ -8,7 +8,7 @@ type alias Location = y : Int } -type alias LocationComparable = (Int, Int) +type alias LocationRef = (Int, Int) neighbor : Location -> Direction -> Location neighbor loc dir = |