

import java.lang.Object;

public class DrawingPoint extends Object {

    long time;
	int x, y;
	
    public DrawingPoint(long time, int x, int y) {
        this.time = time;
		this.x = x;
		this.y = y;
	}
      
}

