11 lines
305 B
JavaScript
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
|