Trait ABC_ECS::System

source ·
pub trait System {
    // Required method
    fn run(&mut self, engine: &mut EntitiesAndComponents);
}
Expand description

Systems access and change components on objects

Required Methods§

source

fn run(&mut self, engine: &mut EntitiesAndComponents)

Implementors§