[][src]Trait amethyst_core::SystemDesc

pub trait SystemDesc<'a, 'b, S> where
    S: System<'a>, 
{ fn build(self, world: &mut World) -> S; }

Initializes a System with some interaction with the World.

Required methods

fn build(self, world: &mut World) -> S

Builds and returns a System.

Parameters

  • world: World that the system will run on.
Loading content...

Implementors

impl<'a, 'b> SystemDesc<'a, 'b, HideHierarchySystem> for HideHierarchySystemDesc[src]

impl<'a, 'b> SystemDesc<'a, 'b, TransformSystem> for TransformSystemDesc[src]

Loading content...