Struct dces::system::EntitySystem[][src]

pub struct EntitySystem<T> {
    pub system: Box<System<T>>,
    // some fields omitted
}

Internal wrapper for a system. Contains also filter, priority, sort and entities.

Fields

The wrapped system.

Methods

impl<T> EntitySystem<T>
[src]

Create a new entity system.

Auto Trait Implementations

impl<T> !Send for EntitySystem<T>

impl<T> !Sync for EntitySystem<T>