diff options
author | Botond Hende <nettingman@gmail.com> | 2024-09-01 00:27:54 +0200 |
---|---|---|
committer | Botond Hende <nettingman@gmail.com> | 2024-09-01 00:27:54 +0200 |
commit | e66fb136c8fd10fe8bafb273c938a3d332d997ba (patch) | |
tree | 94623092ecb1bb6177ecc7b922aeaec429cc08d3 /modules/task_type.py | |
parent | 21019bc8414e60495573807b0fe0eb562a0e8876 (diff) |
setting tasks for ships
Diffstat (limited to 'modules/task_type.py')
-rw-r--r-- | modules/task_type.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/task_type.py b/modules/task_type.py new file mode 100644 index 0000000..7579ad0 --- /dev/null +++ b/modules/task_type.py @@ -0,0 +1,10 @@ +IDLE = 'IDLE' +MINING = 'MINING' + +MIA = 'MIA' +ERROR = 'ERROR' + +task_types = [ + IDLE, + MINING, +] |