Files
tower/js/tile_factory.js
2021-05-11 02:57:17 +00:00

7 lines
166 B
JavaScript

export class TileFactory {
constructor(width, height) {
this.width = width;
this.height = height;
}
}
//# sourceMappingURL=tile_factory.js.map