UNPKG

retrolib

Version:

Render low-res scenes to the canvas in a retro 8-bit era style. Aseprite exported animation wrapper, scene management, sound and image management, particle support.

14 lines 258 B
/** * A rectangle. */ var Rect = /** @class */ (function () { function Rect(x, y, w, h) { this.x = x; this.y = y; this.w = w; this.h = h; } return Rect; }()); export default Rect; //# sourceMappingURL=rect.js.map