import java.awt.Image; /** * An item that is able to return an image of itself. * * @author David J. Barnes and Michael Kölling * @version 2011.07.31 */ public interface DrawableItem extends Item { public Image getImage(); }