summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-09-21 16:32:09 +0200
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-09-21 16:32:09 +0200
commit0d5fba42a1597e5a43266c071776e7acf58071e2 (patch)
tree374ab9f5128486f4cbad57fca35cc5d61a8f2f7b /client/elm/battlemap/src/Character.elm
parent7b9ac4352353203fd1422a93fc7ef3a0daf8a768 (diff)
Adds movement points, indicator for current char.
Diffstat (limited to 'client/elm/battlemap/src/Character.elm')
-rw-r--r--client/elm/battlemap/src/Character.elm3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/elm/battlemap/src/Character.elm b/client/elm/battlemap/src/Character.elm
index 4804cd0..5c64d45 100644
--- a/client/elm/battlemap/src/Character.elm
+++ b/client/elm/battlemap/src/Character.elm
@@ -8,7 +8,8 @@ type alias Character =
name : String,
icon : String,
portrait : String,
- location : Location
+ location : Location,
+ movement_points : Int
}
type alias CharacterRef = String