blob: 8c79e3e15872f5f9bd3f24813fdc624558a9109d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  | 
module View.WeaponSelection exposing (get_html)
-- Elm -------------------------------------------------------------------------
import Html
import Html.Attributes
-- Roster Editor ---------------------------------------------------------------
import Struct.Event
import Struct.Model
--------------------------------------------------------------------------------
-- LOCAL -----------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- EXPORTED --------------------------------------------------------------------
--------------------------------------------------------------------------------
get_html : Struct.Model.Type -> (Html.Html Struct.Event.Type)
get_html model =
   (Html.div
      [
         (Html.Attributes.class "selection-window"),
         (Html.Attributes.class "weapon-selection")
      ]
      [
         (Html.text "Weapon Selection")
      ]
   )
  |