Trait topaz::System [] [src]

pub trait System<T: HasComponents, S> {
    fn operate(&self, _: &mut Universe<T, S>);
}

All systems must implement this trait.

The operate method is called when an event to which the system is subscribed is triggered.

Required Methods

Implementors