Trait specs::System [] [src]

pub trait System<C>: Send {
    fn run(&mut self, _: RunArg, _: C);
}

Generic system that runs through the entities and do something with their components, with an ability to add new entities and delete existing ones.

Required Methods

Run the system, given its context.

Implementors