summaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/roster-editor/src/Struct/Portrait.elm')
-rw-r--r-- | src/roster-editor/src/Struct/Portrait.elm | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/roster-editor/src/Struct/Portrait.elm b/src/roster-editor/src/Struct/Portrait.elm new file mode 100644 index 0000000..809f732 --- /dev/null +++ b/src/roster-editor/src/Struct/Portrait.elm @@ -0,0 +1,40 @@ +module Struct.Portrait exposing + ( + Type, + Ref, + none + ) + +-- Elm ------------------------------------------------------------------------- + +-- Roster Editor --------------------------------------------------------------- +import Struct.Omnimods + +-------------------------------------------------------------------------------- +-- TYPES ----------------------------------------------------------------------- +-------------------------------------------------------------------------------- +type alias Type = + { + id : String, + name : String, + body_id : String, + icon_id : String + } + +type alias Ref = String + +-------------------------------------------------------------------------------- +-- LOCAL ----------------------------------------------------------------------- +-------------------------------------------------------------------------------- + +-------------------------------------------------------------------------------- +-- EXPORTED -------------------------------------------------------------------- +-------------------------------------------------------------------------------- +none : Type +none = + { + id = "cat", + name = "Black Cat", + body_id = "mammal", + icon_id = "cat" + } |