summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2021-12-26 17:13:33 +0100
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2021-12-26 17:13:33 +0100
commit9c46df53ad401e060664aafe8fdfbcb9a3da5731 (patch)
treecbe3e412bc04e322ddab5ca52bdb776c63b3fdc2 /src/Struct/UI.elm
Initial commit.
Diffstat (limited to 'src/Struct/UI.elm')
-rw-r--r--src/Struct/UI.elm24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/Struct/UI.elm b/src/Struct/UI.elm
new file mode 100644
index 0000000..53348f6
--- /dev/null
+++ b/src/Struct/UI.elm
@@ -0,0 +1,24 @@
+module Struct.UI exposing
+ (
+ Type
+ )
+
+-- Elm -------------------------------------------------------------------------
+import List
+import String
+
+--------------------------------------------------------------------------------
+-- TYPES -----------------------------------------------------------------------
+--------------------------------------------------------------------------------
+type alias Type =
+ {
+ displayed_options : (List String)
+ }
+
+--------------------------------------------------------------------------------
+-- LOCAL -----------------------------------------------------------------------
+--------------------------------------------------------------------------------
+
+--------------------------------------------------------------------------------
+-- EXPORTED --------------------------------------------------------------------
+--------------------------------------------------------------------------------