Trait regecs::component::ComponentManager[][src]

pub trait ComponentManager {
    fn clear_components(&mut self, target: ObjectRef);
}
Expand description

Base trait to represent the container of all component pools

Required methods

fn clear_components(&mut self, target: ObjectRef)[src]

Expand description

Clears all components attached to the given entity

Implementors