Trait amethyst_core::bundle::SystemBundle [] [src]

pub trait SystemBundle<'a, 'b> {
    fn build(self, dispatcher: &mut DispatcherBuilder<'a, 'b>) -> Result<()>;
}

A bundle of ECS components, resources and systems.

Required Methods

Build and add ECS resources, register components, add systems etc to the Application.

Implementors