asdf-games/lib/Rect.js

10 lines
169 B
JavaScript
Raw Normal View History

class Rect {
constructor(w, h, style = { fill: "#333" }) {
this.pos = { x: 0, y: 0 };
this.w = w;
this.h = h;
this.style = style;
}
}
module.exports = Rect;