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