Subversion Repositories Code-Repo

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
94 Kevin 1
 
2
// Interface for a generic record for the BSTree or PRQuadTree
3
public interface Record {
4
	public int getX();
5
	public int getY();
6
}