#ifndef PHYSICS_EXAMPLE_1
#define PHYSICS_EXAMPLE_1

#include "examples.h"

using namespace std;

class RatPhysicsExample1: public RatPhysicsExample
{
public:
	rat_real viewheight;

	RatPhysicsExample1(string name);
	RatPhysicsExample1(const char *name);
	RatPhysicsExample1(char *name);

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

#endif
