7 lines
166 B
JavaScript
7 lines
166 B
JavaScript
export class TileFactory {
|
|
constructor(width, height) {
|
|
this.width = width;
|
|
this.height = height;
|
|
}
|
|
}
|
|
//# sourceMappingURL=tile_factory.js.map
|