blob: cf4d47568e5d0cb9ef0473a035c8cc727e9f333a (
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
29
30
31
32
33
34
35
36
|
module Struct.Model exposing
(
Type,
new
)
-- Elm -------------------------------------------------------------------------
-- Tonkadur --------------------------------------------------------------------
import Tonkadur.Types
-- Local Module ----------------------------------------------------------------
import Struct.UI
--------------------------------------------------------------------------------
-- TYPES -----------------------------------------------------------------------
--------------------------------------------------------------------------------
type alias Type =
{
tonkadur : Tonkadur.Types.State,
ui : Struct.UI.Type
}
--------------------------------------------------------------------------------
-- LOCAL -----------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- EXPORTED --------------------------------------------------------------------
--------------------------------------------------------------------------------
new : Type
new =
{
tonkadur = (Tonkadur.Types.new_state 42),
ui = (Struct.UI.new)
}
|