pub trait System: 'static {
    fn name(&self) -> Cow<'static, str>;
    fn run(&mut self, context: &mut MapContext);
}
Expand description

An system that can be added to a Schedule

Required Methods

Returns the system’s name.

Implementors