| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 1× 1× 1× 1× 149× 149× 149× 149× 149× 149× 149× 149× 1× 1× | define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Rect = (function () {
function Rect(x, y, width, height) {
this.x = Number.MAX_VALUE;
this.y = Number.MAX_VALUE;
this.width = 0;
this.height = 0;
this.x = x;
this.y = y;
this.width = width;
this.height = height;
}
return Rect;
}());
exports.Rect = Rect;
});
|