| 23 | #include "LinearMath/btHashMap.h" |
| 24 | |
| 25 | int main(int argc, char* argv[]) |
| 26 | { |
| 27 | { |
| 28 | DummyGUIHelper noGfx; |
| 29 | |
| 30 | CommonExampleOptions options(&noGfx); |
| 31 | CommonExampleInterface* example = StandaloneExampleCreateFunc(options); |
| 32 | |
| 33 | example->initPhysics(); |
| 34 | for (int i = 0; i < 100000; i++) |
| 35 | { |
| 36 | printf("Simulating step %d\n", i); |
| 37 | example->stepSimulation(1.f / 60.f); |
| 38 | } |
| 39 | example->exitPhysics(); |
| 40 | |
| 41 | delete example; |
| 42 | } |
| 43 | return 0; |
| 44 | } |
nothing calls this directly
no test coverage detected