import Raster;



public abstract interface Drawable {

    public abstract void Draw(Raster r);
}
