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
sourcetype Modifier: ModifyActions
type Modifier: ModifyActions
The type returned for modifying actions.