pub trait System { // Required methods fn startup(&mut self, world: &mut World); fn run_cycle(&mut self, world: &mut World); }
Trait for ECS systems