package lectures.deep_shallow_copy;
import util.annotations.WebDocuments;

import lectures.inheritance.extra.MutablePoint;

@WebDocuments({"Lectures/DeepShallowCopy.pptx", "Lectures/DeepShallowCopy.pdf", "Videos/DeepShallowCopy.avi"})
public interface CloneablePoint extends MutablePoint {
    public Object clone();
}