remove<T> method

void remove<T>(
  1. Entity entity
)

Queues removing the component of type T from entity.

Implementation

void remove<T>(Entity entity) {
  _push(_opRemove, entity, null, T);
}