import java.awt.*;

public interface Drawable
{
  public abstract void draw(Graphics g);
  public abstract void moveTo(int a, int b);
} 
