Subversion Repositories Code-Repo

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed


// Interface for a generic record for the BSTree or PRQuadTree
public interface Record {
        public int getX();
        public int getY();
}