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) }