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/View.elm | |
parent | 0b9096ed0c66db403c244a4720bac60326a40394 (diff) |
Characters can actually move.
Diffstat (limited to 'client/elm/battlemap/src/View.elm')
-rw-r--r-- | client/elm/battlemap/src/View.elm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/elm/battlemap/src/View.elm b/client/elm/battlemap/src/View.elm index a76a0a1..d0cb8c8 100644 --- a/client/elm/battlemap/src/View.elm +++ b/client/elm/battlemap/src/View.elm @@ -32,6 +32,10 @@ view model = [ (onClick (DirectionRequest Right)) ] [ (text "Right") ] ), + (button + [ (onClick EndTurn) ] + [ (text "Apply") ] + ), (div [] [(Batmap.view model)] |