#ifndef PHYSICS_EXAMPLE_3
#define PHYSICS_EXAMPLE_3

#include "examples.h"

using namespace std;

class RatPhysicsExample3: public RatPhysicsExample
{
public:
	RatPhysicsExample3(string name);
	RatPhysicsExample3(const char *name);
	RatPhysicsExample3(char *name);

	bool InitWorld();
	bool UpdateWorld(rat_real timestep);
	bool UpdateVisuals();
	bool FreeWorld();
};

#endif
