package nathanw;
import java.awt.*;

public interface PosPaintable {
    public void paint(Graphics g,int x,int y);
    }
