| summaryrefslogtreecommitdiff | 
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2021-12-27 22:32:32 +0100 | 
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2021-12-27 22:32:32 +0100 | 
| commit | 18ebe6e6ca4299b7f903426502c5a5fb73747c81 (patch) | |
| tree | 7a310a4c8330b04c0d61a69e11650452896851eb /src/ElmModule/View.elm | |
| parent | 7c727df4fb7e15e396959f59048f22bb346aef13 (diff) | |
...
Diffstat (limited to 'src/ElmModule/View.elm')
| -rw-r--r-- | src/ElmModule/View.elm | 14 | 
1 files changed, 14 insertions, 0 deletions
| diff --git a/src/ElmModule/View.elm b/src/ElmModule/View.elm index fb99b89..f93928c 100644 --- a/src/ElmModule/View.elm +++ b/src/ElmModule/View.elm @@ -8,6 +8,7 @@ import Html.Attributes  import Struct.Event  import Struct.Model +import View.PlayerInput  --------------------------------------------------------------------------------  -- LOCAL -----------------------------------------------------------------------  -------------------------------------------------------------------------------- @@ -22,5 +23,18 @@ view model =           (Html.Attributes.class "fullscreen-module")        ]        [ +         (Html.div +            [ +               (Html.Attributes.class "tonkadur-errors") +            ] +            model.ui.displayed_errors +         ), +         (Html.div +            [ +               (Html.Attributes.class "tonkadur-texts") +            ] +            model.ui.displayed_texts +         ), +         (View.PlayerInput.get_html model)        ]     ) | 


