private void Remove(EntityComponent component, Entity entity)
 {
     CheckEntityComponentWithSystems(component, entity, true);
 }
 private void Add(EntityComponent component, Entity entity)
 {
     CheckEntityComponentWithSystems(component, entity, false);
 }