remove<T> method

EntityCommands remove<T>()

Queues removing the component of type T from entity.

Implementation

EntityCommands remove<T>() {
  _commands.remove<T>(entity);
  return this;
}