package lectures.composite.objects_shapes;
import util.annotations.WebDocuments;



@WebDocuments({"Lectures/CompositeObjectsShapes.pptx", "Lectures/CompositeObjectsShapes.pdf", "Videos/CompositeObjectsShapes.avi"})
public interface PlottedShuttle {
    public CartesianPlane getCartesianPlane();
    public ImageWithHeight getShuttleImage();
    public int getShuttleX();
    public void setShuttleX(int newVal);
    public int getShuttleY();
    public void setShuttleY(int newVal);    
}