2021-05-11 02:57:17 +00:00
|
|
|
export class Tile {
|
|
|
|
|
constructor(width, height) {
|
|
|
|
|
this.elem = document.createElement('div');
|
|
|
|
|
this.elem.style.gridColumnEnd = `span ${width}`;
|
|
|
|
|
this.elem.style.gridRowEnd = `span ${height}`;
|
|
|
|
|
}
|
2021-05-11 05:17:16 +00:00
|
|
|
remove() {
|
|
|
|
|
this.elem.remove();
|
|
|
|
|
}
|
2021-05-11 02:57:17 +00:00
|
|
|
}
|
|
|
|
|
//# sourceMappingURL=tile.js.map
|