removeComponent method
Implementation
@pragma('vm:prefer-inline')
void removeComponent(EntityID entityID, Type componentType) {
if (_removedEntities.contains(entityID)) return;
_commands.add(_Command.removeComponent(entityID, componentType));
}
@pragma('vm:prefer-inline')
void removeComponent(EntityID entityID, Type componentType) {
if (_removedEntities.contains(entityID)) return;
_commands.add(_Command.removeComponent(entityID, componentType));
}