Trait dotrix::ecs::IntoSystem[][src]

pub trait IntoSystem<C, S> {
    fn into_system(self) -> Box<dyn Systemized + 'static, Global>;
}
Expand description

Abstraction for a function that can be turned into a System

Required methods

Converts a function into System

Implementors