package express.awt;


public class TimedPoint extends Object {
   
	public int x, y; // x=0, y=0 is upper left corner of canvas
	public long time;	// time of point creation in milliseconds
	 
    public TimedPoint(int x, int y, long time) {
        
		this.x = x;
        this.y = y;
		this.time = time;
		
    }
}