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

8 lines
216 B
JavaScript

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