summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'client/elm/battlemap/src/Character.elm')
-rw-r--r--client/elm/battlemap/src/Character.elm5
1 files changed, 3 insertions, 2 deletions
diff --git a/client/elm/battlemap/src/Character.elm b/client/elm/battlemap/src/Character.elm
index 3082550..4804cd0 100644
--- a/client/elm/battlemap/src/Character.elm
+++ b/client/elm/battlemap/src/Character.elm
@@ -1,13 +1,14 @@
module Character exposing (Character, CharacterRef, to_comparable)
+import Battlemap.Location exposing (Location)
+
type alias Character =
{
id : String,
name : String,
icon : String,
portrait : String,
- x : Int,
- y : Int
+ location : Location
}
type alias CharacterRef = String