pub trait ActionsProxy<'a> {
    type Modifier: ModifyActions;

    fn actions(&'a mut self, agent: Entity) -> Self::Modifier;
}
Expand description

Proxy method for modifying actions. Returns a type that implements ModifyActions.

Required Associated Types

The type returned for modifying actions.

Required Methods

Returns a type for modifying actions for specified agent.

Implementations on Foreign Types

Implementors