Trait ABC_ECS::OwnedComponents
source · pub trait OwnedComponents {
type Input;
// Required method
fn make_entity_with_components(
entities_and_components: &mut EntitiesAndComponents,
components: Self::Input
) -> Entity;
}Required Associated Types§
Required Methods§
sourcefn make_entity_with_components(
entities_and_components: &mut EntitiesAndComponents,
components: Self::Input
) -> Entity
fn make_entity_with_components( entities_and_components: &mut EntitiesAndComponents, components: Self::Input ) -> Entity
Returns a tuple of owned components
Object Safety§
This trait is not object safe.