pub trait StaticArchetype: ArchetypeState {
    const N_COMPONENTS: usize;

    fn into_any(self) -> AnyState
    where
        Self: Sized + 'static
, { ... } }
Expand description

Defines archetype objects (entity states).

Required Associated Constants

Provided Methods

Implementors