package graphics.draw2d;

import java.awt.*;

public interface Paintable {
  public void paint(Graphics g);
}