asdf-games/asdf/Text.js

9 lines
155 B
JavaScript
Raw Normal View History

class Text {
constructor(text = "", style = {}) {
this.pos = { x: 0, y: 0};
this.text = text;
this.style = style;
}
}
export default Text;