// @(#)DynShape.h	3.7	7/28/92

#ifndef DynShape_First

#ifdef __GNUG__
#pragma interface
#endif

#define DynShape_First

#include "Shape.h"

//---- Dyn Shape ---------------------------------------------------------------

class DynShape: public Shape {
public:
    MetaDef(DynShape);
    
    DynShape();
    short *GetImage();
    void Draw(Rectangle, Point);
    void Outline(Point, Point);
};

#endif DynShape_First


