summaryrefslogtreecommitdiff
path: root/type
diff options
context:
space:
mode:
Diffstat (limited to 'type')
-rw-r--r--type/locations.py9
-rw-r--r--type/people.py14
2 files changed, 23 insertions, 0 deletions
diff --git a/type/locations.py b/type/locations.py
new file mode 100644
index 0000000..744f63a
--- /dev/null
+++ b/type/locations.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python3
+
+import enum
+
+class Location(enum.Enum):
+ UNKNOWN = 0
+ HOUSE = 1
+ CABIN = 2
diff --git a/type/people.py b/type/people.py
new file mode 100644
index 0000000..1dc0421
--- /dev/null
+++ b/type/people.py
@@ -0,0 +1,14 @@
+#!/usr/bin/env python3
+
+import enum
+
+
+class Person(enum.Enum):
+ UNKNOWN = 0
+ SCOTT = 1
+ LYNN = 2
+ ALEX = 3
+ AARON_AND_DANA = 4
+ AARON = 4
+ DANA = 4
+