@nebulaglitch/shopbot
Version:
A library to generate shopbot output
20 lines (17 loc) • 637 B
JavaScript
import Command from '../command.js';
class FileLoadPartFile extends Command {
constructor(filename, proportionX, proportionY, proportionZ, repetitions, offset3d2d, plunge, tabFeature, doPlungeZ){
super('FP');
this.args.push(filename);
this.args.push(proportionX);
this.args.push(proportionY);
this.args.push(proportionZ);
this.args.push(repetitions);
this.args.push(offset3d2d);
this.args.push(plunge);
this.args.push(tabFeature);
this.args.push(doPlungeZ);
}
}
export { FileLoadPartFile as default };
//# sourceMappingURL=fileloadpartfile.js.map