Trait rfw::ecs::system::ExclusiveSystem[][src]

pub trait ExclusiveSystem: 'static + Send + Sync {
    fn name(&self) -> Cow<'static, str>;
fn id(&self) -> SystemId;
fn run(&mut self, world: &mut World);
fn initialize(&mut self, world: &mut World);
fn check_change_tick(&mut self, change_tick: u32); }

Required methods

Implementors