diff options
Diffstat (limited to 'server/constants.py')
| -rw-r--r-- | server/constants.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/server/constants.py b/server/constants.py new file mode 100644 index 00000000..fa07e8ee --- /dev/null +++ b/server/constants.py @@ -0,0 +1,11 @@ +from enum import Enum + +class TargetType(Enum): + #possible keys: ip, OOC, id, cname, ipid, hdid + IP = 0 + OOC_NAME = 1 + ID = 2 + CHAR_NAME = 3 + IPID = 4 + HDID = 5 + ALL = 6
\ No newline at end of file |
