| 154 | } |
| 155 | |
| 156 | static void insertToSpatialIndex(EntityBase& entity, const size_t newIndex) |
| 157 | { |
| 158 | entity.nextQuadrantId = _entitySpatialIndex[newIndex]; |
| 159 | _entitySpatialIndex[newIndex] = entity.id; |
| 160 | } |
| 161 | |
| 162 | static void insertToSpatialIndex(EntityBase& entity) |
| 163 | { |
no test coverage detected