#ifndef PHYSICS_EXAMPLE_5
#define PHYSICS_EXAMPLE_5

#include "examples.h"

using namespace std;

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

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

#endif
