summaryrefslogtreecommitdiff |
diff options
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)] |