home · contact · privacy
Server: Split in many files, reorganize code slightly to fit change.
[plomrogue] / server / config / actions.py
1 from server.actions import actor_wait, actor_move, actor_pick_up, actor_drop, \
2     actor_use
3
4 action_db = {
5     "actor_wait": actor_wait,
6     "actor_move": actor_move,
7     "actor_pick_up": actor_pick_up,
8     "actor_drop": actor_drop,
9     "actor_use": actor_use
10 }