/* G3Point.java - simple class to hold a 2D Point
 *
 * Written by: Noel Vega (noel.vega@pba.com)
 */
package Rectangles;

public class OldG3Point {

    public OldG3Point() {}

    public OldG3Point(int x, int y) {
	this.x = x; 
	this.y = y;
    }

    int x, y;
}
