Trait amethyst::shred::SetupHandler[]

pub trait SetupHandler<T> {
    fn setup(res: &mut Resources);
}

A setup handler performing the fetching of T.

Required Methods

Sets up Resources for fetching T.

Implementations on Foreign Types

impl<P> SetupHandler<Hierarchy<P>> for HierarchySetupHandler<P> where
    P: Component + Send + Sync + 'static,
    <P as Component>::Storage: Tracked

Implementors