#ifndef PHYSICS_EXAMPLE_6
#define PHYSICS_EXAMPLE_6

#include "examples.h"

using namespace std;

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

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

#endif
