package geometry;	
	
import java.awt.*;	
	
public interface Colorable {	
	// getColor(): return the color of the object	
	public Color getColor();	
	// setColor(): set the color of the object	
	public void setColor(Color c);	
}	
