racket/collects/htdch/draw/Posn.java
2005-05-27 18:56:37 +00:00

10 lines
124 B
Java

package draw;
public class Posn {
public int x, y;
public Posn( int x, int y ) {
this.x = x;
this.y = y;
}
}