new-shapes/src/main/java/ovh/gasser/rxshapes/ShapeVisitor.java
2019-03-19 20:41:21 +01:00

11 lines
257 B
Java

package ovh.gasser.rxshapes;
import ovh.gasser.rxshapes.shapes.SCollection;
import ovh.gasser.rxshapes.shapes.SRectangle;
public interface ShapeVisitor {
void visitRectangle(SRectangle sRectangle);
void visitCollection(SCollection collection);
}