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

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

A bundle of ECS components, resources and systems.

Required methods

fn build(self, dispatcher: &mut DispatcherBuilder<'a, 'b>) -> Result<()>

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

Loading content...

Implementors

impl<'a, 'b, 'c> SystemBundle<'a, 'b> for TransformBundle<'c>[src]

Loading content...