8 lines
216 B
JavaScript
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
|