Skip to content
Snippets Groups Projects
Decorator.java 127 B
Newer Older
  • Learn to ignore specific revisions
  • VIOLA Anthony's avatar
    VIOLA Anthony committed
    package shape;
    
    abstract public class Decorator implements Shape{
        private Shape decoratedShape;
    
        Decorator(){
    
        }
    }