Type Alias bevy::ecs::schedule::BoxedCondition

pub type BoxedCondition<In = ()> = Box<dyn ReadOnlySystem<Out = bool, In = In>>;
Expand description

A type-erased run condition stored in a Box.

Aliased Typeยง

struct BoxedCondition<In = ()>(/* private fields */);