summaryrefslogtreecommitdiff |
diff options
author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-09-18 19:12:54 +0200 |
---|---|---|
committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-09-18 19:12:54 +0200 |
commit | 36344e727e45b6a1d39f372a6a39ab973e023bdf (patch) | |
tree | 740a524f94b2ce846dcd7a920848139c5caa4e38 /client/elm/battlemap/src/Model.elm | |
parent | 0b9096ed0c66db403c244a4720bac60326a40394 (diff) |
Characters can actually move.
Diffstat (limited to 'client/elm/battlemap/src/Model.elm')
-rw-r--r-- | client/elm/battlemap/src/Model.elm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/client/elm/battlemap/src/Model.elm b/client/elm/battlemap/src/Model.elm index 61d827b..a019c45 100644 --- a/client/elm/battlemap/src/Model.elm +++ b/client/elm/battlemap/src/Model.elm @@ -30,8 +30,7 @@ model = name = "Char2", icon = "Icon2", portrait = "Portrait2", - x = 1, - y = 4 + location = {x = 1, y = 4} } (insert "1" @@ -40,8 +39,7 @@ model = name = "Char1", icon = "Icon1", portrait = "Portrait1", - x = 4, - y = 1 + location = {x = 4, y = 1} } (insert "0" @@ -50,8 +48,7 @@ model = name = "Char0", icon = "Icon0", portrait = "Portrait0", - x = 0, - y = 0 + location = {x = 0, y = 0} } empty ) |