/**
    A simple, possibly redundant representation of an x,y screen point.

    @author RPD
*/
public class ScreenLoc {
    int X;
    int Y;

    public int GetX() {
        return X;
    }

    public int GetY() {
        return Y;
    }

    public ScreenLoc(int x, int y) {
        X=x;
        Y=y; 
    }
    public String toString() {
        return new String("ScreenLoc: "+X+" "+Y);
    }
}
