
/**
 Interface for a rectangle to be drawn on the screen.
*/
public interface RectangleInterface extends ShapeInterface
{
	/**
	 Sets the rectangle's dimensions.
	*/
    public void set(int newHeight, int newWidth);
}




