Remove all the scenes
| 390 | |
| 391 | // Remove all the scenes |
| 392 | void TestbedApplication::destroyScenes() { |
| 393 | |
| 394 | for (uint i=0; i<mScenes.size(); i++) { |
| 395 | delete mScenes[i]; |
| 396 | } |
| 397 | |
| 398 | mCurrentScene = NULL; |
| 399 | } |
| 400 | |
| 401 | void TestbedApplication::updateSinglePhysicsStep() { |
| 402 |