pub trait AddComponent<T> {
    fn add_component(
        &mut self,
        entity: usize,
        comp_type: &str,
        comp_value: Vec<T>
    ); }

Required Methods

Implementors