System

Trait System 

Source
pub trait System {
    // Required methods
    fn startup(&mut self, world: &mut World);
    fn run_cycle(&mut self, world: &mut World);
}
Expand description

Trait for ECS systems

Required Methods§

Source

fn startup(&mut self, world: &mut World)

Source

fn run_cycle(&mut self, world: &mut World)

Implementors§