Files
tower/ts/tile.ts
2021-05-11 05:17:16 +00:00

16 lines
358 B
TypeScript

export abstract class Tile {
elem: HTMLElement;
constructor(width: number, height: number) {
this.elem = document.createElement('div');
this.elem.style.gridColumnEnd = `span ${width}`;
this.elem.style.gridRowEnd = `span ${height}`;
}
abstract play(name: string): Animation | undefined;
remove(): void {
this.elem.remove();
}
}