//-----------------------------------------------------------------------------
/**
* The rectangle class.
*
* @class
* @extends PIXI.Rectangle
* @param {number} x - The x coordinate for the upper-left corner.
* @param {number} y - The y coordinate for the upper-left corner.
* @param {number} width - The width of the rectangle.
* @param {number} height - The height of the rectangle.
*/
function Rectangle() {
this.initialize(...arguments);
}
Rectangle.prototype = Object.create(PIXI.Rectangle.prototype);
Rectangle.prototype.constructor = Rectangle;
Rectangle.prototype.initialize = function(x, y, width, height) {
PIXI.Rectangle.call(this, x, y, width, height);
};