| summaryrefslogtreecommitdiff | 
diff options
Diffstat (limited to 'client/elm/battlemap/src/View.elm')
| -rw-r--r-- | client/elm/battlemap/src/View.elm | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/client/elm/battlemap/src/View.elm b/client/elm/battlemap/src/View.elm index 7058681..a76a0a1 100644 --- a/client/elm/battlemap/src/View.elm +++ b/client/elm/battlemap/src/View.elm @@ -1,13 +1,13 @@  module View exposing (view) -import Html exposing (Html, button, div, text, table, tr, td) +import Html exposing (Html, button, div, text)  import Html.Events exposing (onClick) -import Update exposing (..) +import Update exposing (Msg(..))  import Model exposing (Model)  import Battlemap.Html as Batmap exposing (view) -import Battlemap.Direction exposing (..) +import Battlemap.Direction exposing (Direction(..))  -- VIEW | 


