remove method

  1. @override
bool remove(
  1. Component c
)
override

Marks a component to be removed from the components list on the next game tick.

Implementation

@override
bool remove(Component c) {
  _removeLater.add(c);
  return true;
}