raingame
Version:
2D game framework
16 lines (15 loc) • 419 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Size = /** @class */ (function () {
function Size(width, height) {
this.width = 0;
this.height = 0;
this.set(width, height);
}
Size.prototype.set = function (width, height) {
this.width = width;
this.height = height;
};
return Size;
}());
exports.default = Size;