Every action an actor can take is defined in a *_action.py file.
tcod-base includes the following actions (in /game/actions):
| File | Description |
|---|---|
base_action.py |
A base class from which all actions inherit. |
move_action.py |
Move an actor within a map. |
pickup_item_action.py |
Pickup an item. |
take_stairs_action.py |
Move an actor from one level/map to another. |
@todo