package shape;

abstract public class Decorator implements Shape{
    private Shape decoratedShape;

    Decorator(){

    }
}