summaryrefslogtreecommitdiff
path: root/modules/task_type.py
diff options
context:
space:
mode:
authorBotond Hende <nettingman@gmail.com>2024-09-01 00:27:54 +0200
committerBotond Hende <nettingman@gmail.com>2024-09-01 00:27:54 +0200
commite66fb136c8fd10fe8bafb273c938a3d332d997ba (patch)
tree94623092ecb1bb6177ecc7b922aeaec429cc08d3 /modules/task_type.py
parent21019bc8414e60495573807b0fe0eb562a0e8876 (diff)
setting tasks for ships
Diffstat (limited to 'modules/task_type.py')
-rw-r--r--modules/task_type.py10
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,
+]