diff options
| author | Scott <[email protected]> | 2021-12-06 15:43:17 -0800 |
|---|---|---|
| committer | Scott <[email protected]> | 2021-12-06 15:43:17 -0800 |
| commit | ba223f821df1e9b8abbb6f6d23d5ba92c5a70b05 (patch) | |
| tree | 637aa43cfa5049ddf07eea3c2ec9ff51ec1be2d8 /type | |
| parent | 4f11c12a1afb209eb1ba52a4632c5f49234cc0dc (diff) | |
Move stuff around.
Diffstat (limited to 'type')
| -rw-r--r-- | type/locations.py | 9 | ||||
| -rw-r--r-- | type/people.py | 14 |
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 + |
