Destroy a box collision shape * @param boxShape A pointer to the box shape to destroy */
| 337 | * @param boxShape A pointer to the box shape to destroy |
| 338 | */ |
| 339 | void PhysicsCommon::destroyBoxShape(BoxShape* boxShape) { |
| 340 | |
| 341 | deleteBoxShape(boxShape); |
| 342 | |
| 343 | mBoxShapes.remove(boxShape); |
| 344 | } |
| 345 | |
| 346 | // Delete a box collision shape |
| 347 | /** |