Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 489 Bytes

File metadata and controls

20 lines (12 loc) · 489 Bytes

Action

Every action an actor can take is defined in a *_action.py file.

Actions

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.

Create an action

@todo