Files
tower/js/tile.js
2021-05-11 03:23:28 +00:00

8 lines
256 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}`;
}
}
//# sourceMappingURL=tile.js.map