removeEntityFromPartition method
Removes an entity from a specific partition.
Implementation
CellSpacePartitioning removeEntityFromPartition(GameEntity entity, int index ) {
final cell = cells[ index ];
cell.remove( entity );
return this;
}
Removes an entity from a specific partition.
CellSpacePartitioning removeEntityFromPartition(GameEntity entity, int index ) {
final cell = cells[ index ];
cell.remove( entity );
return this;
}