#ifndef RECTANGLE_H
#define RECTANGLE_H
#include "shape.h"
class rectangle : public shape {
public:
rectangle() { tx=ty=width=height=0; }
virtual void draw();
virtual void getUserParameters(int firstLine);
protected:
int tx, ty;
int width;
int height;
};
#endif