pub trait SetupHandler<T>: Sized {
    fn setup(world: &mut World);
}
Expand description

A setup handler performing the fetching of T.

Required Methods

Sets up World for fetching T.

Implementors