Files
tower/js/tile.js

11 lines
305 B
JavaScript
Raw Normal View History

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}`;
}
get_elem() {
return this.elem;
}
}
//# sourceMappingURL=tile.js.map