Add STriangle
This commit is contained in:
@@ -3,6 +3,7 @@ package ovh.gasser.newshapes;
|
||||
import ovh.gasser.newshapes.shapes.SCircle;
|
||||
import ovh.gasser.newshapes.shapes.SCollection;
|
||||
import ovh.gasser.newshapes.shapes.SRectangle;
|
||||
import ovh.gasser.newshapes.shapes.STriangle;
|
||||
|
||||
public interface ShapeVisitor {
|
||||
void visitRectangle(SRectangle sRectangle);
|
||||
@@ -10,4 +11,6 @@ public interface ShapeVisitor {
|
||||
void visitCollection(SCollection collection);
|
||||
|
||||
void visitCircle(SCircle sCircle);
|
||||
|
||||
void visitTriangle(STriangle sTriangle);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user