import java.awt.Graphics;


public abstract class WObject {
	
	double x, y;
	
	abstract void step();
	abstract void draw(Graphics g);
	

}

