package Shapes;

/**
 * OurRectangle
 * <p><b>History</b> :<ul>
 *   <li>Version 0.1 : Initial version</li>
 * </ul></p>
 * @author Pierrick Calvet & Florian Delclaux
 */
public class OurRectangle extends OurParallelogram{
/**
 * Constructs a new OurRectangle whose top-left corner is specified as (x, y)
 * and whose width and height are specified by the arguments of the same name.
 * @param x The specified x coordinate
 * @param y The specified y coordinate
 * @param width The width of OurRectangle
 * @param height The height of OurRectangle
 */
  public OurRectangle(int x, int y, int width, int height){
    super(x, y, width, height, 90);
  }
}
