[][src]Trait conniecs::system::Process

pub trait Process: System {
    fn process(
        &mut self,
        data: &mut DataHelper<Self::Components, Self::Services>
    ); }

Required methods

fn process(&mut self, data: &mut DataHelper<Self::Components, Self::Services>)

Loading content...

Implementors

impl<T> Process for EntitySystem<T> where
    T: EntityProcess
[src]

impl<T> Process for InteractSystem<T> where
    T: InteractProcess
[src]

impl<T> Process for IntervalSystem<T> where
    T: Process + SystemInterval
[src]

impl<T> Process for LazySystem<T> where
    T: Process
[src]

Loading content...