diff options
Diffstat (limited to 'type/locations.py')
| -rw-r--r-- | type/locations.py | 9 |
1 files changed, 9 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 |
