package Shapes;

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