pub trait System: Stream {
    fn world(&self) -> Arc<RwLock<World>>;
}
Expand description

System core trait

Required methods

Get the world of System

Implementors