Files
tower/js/tile.js
2021-05-11 05:17:16 +00:00

11 lines
305 B
JavaScript

export class Tile {
constructor(width, height) {
this.elem = document.createElement('div');
this.elem.style.gridColumnEnd = `span ${width}`;
this.elem.style.gridRowEnd = `span ${height}`;
}
remove() {
this.elem.remove();
}
}
//# sourceMappingURL=tile.js.map