11 lines
257 B
Java
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);
|
|
}
|