remove method

  1. @override
void remove(
  1. T item
)
override

Removes an item from the broadphase. Should be called in a CollisionDetection class while removing a hitbox from its collision detection system.

Implementation

@override
void remove(T item) => items.remove(item);