#ifndef PHYSICS_EXAMPLE_4 #define PHYSICS_EXAMPLE_4 #include "examples.h" using namespace std; class RatPhysicsExample4: public RatPhysicsExample { public: RatPhysicsExample4(string name); RatPhysicsExample4(const char *name); RatPhysicsExample4(char *name); bool InitWorld(); bool UpdateWorld(rat_real timestep); bool UpdateVisuals(); bool FreeWorld(); }; #endif