home · contact · privacy
Server: Split in many files, reorganize code slightly to fit change.
[plomrogue] / server / config / actions.py
diff --git a/server/config/actions.py b/server/config/actions.py
new file mode 100644 (file)
index 0000000..c07a9d8
--- /dev/null
@@ -0,0 +1,10 @@
+from server.actions import actor_wait, actor_move, actor_pick_up, actor_drop, \
+    actor_use
+
+action_db = {
+    "actor_wait": actor_wait,
+    "actor_move": actor_move,
+    "actor_pick_up": actor_pick_up,
+    "actor_drop": actor_drop,
+    "actor_use": actor_use
+}