// Drawable.java import java.awt.Graphics; // An interface for things which can be drawn public interface Drawable { void draw(Graphics page); }