#ifndef PHYSICS_EXAMPLE_7
#define PHYSICS_EXAMPLE_7

#include "examples.h"

using namespace std;

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

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

#endif
