Trait regecs::system::System[][src]

pub trait System<TState, TComponentManager> {
    fn update(&mut self, ctx: &mut TState, components: &mut TComponentManager);
}
Expand description

System interface

Required methods

fn update(&mut self, ctx: &mut TState, components: &mut TComponentManager)[src]

Implementors