Files
tower/js/tile.js
2021-05-11 02:57:17 +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}`;
}
get_elem() {
return this.elem;
}
}
//# sourceMappingURL=tile.js.map