pub trait Plugin<E: Environment> {
    fn build(
        &self,
        schedule: &mut Schedule,
        kernel: Rc<Kernel<E>>,
        world: &mut World,
        graph: &mut RenderGraph
    ); }

Required Methods

Implementors