X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=server%2Fconfig%2Factions.py;fp=server%2Fconfig%2Factions.py;h=c07a9d83eff6067817062231189b3f70ca100682;hb=08f8592f1a1e5d340b6c2372551f0a3da28a07d8;hp=0000000000000000000000000000000000000000;hpb=fa1580196b809e6f14e59e59fe92d36664b49f27;p=plomrogue diff --git a/server/config/actions.py b/server/config/actions.py new file mode 100644 index 0000000..c07a9d8 --- /dev/null +++ b/server/config/actions.py @@ -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 +}