[][src]Trait oxygengine_core::ecs::shred::SetupHandler

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

A setup handler performing the fetching of T.

Required methods

fn setup(res: &mut Resources)

Sets up Resources for fetching T.

Loading content...

Implementations on Foreign Types

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

Loading content...

Implementors

impl<T> SetupHandler<T> for DefaultProvider where
    T: Default + Resource
[src]

impl<T> SetupHandler<T> for PanicHandler where
    T: Resource
[src]

Loading content...