pub trait System: 'static { // Required method fn run(&self, world: &mut World); }
System trait
Run the system on world
world