@nebulaglitch/shopbot
Version:
A library to generate shopbot output
15 lines (12 loc) • 387 B
JavaScript
import Command from '../command.js';
class Jog4 extends Command {
constructor(distanceX = null, distanceY = null, distanceZ = null, distanceA = null){
super("J4");
this.args.push(distanceX);
this.args.push(distanceY);
this.args.push(distanceZ);
this.args.push(distanceA);
}
}
export { Jog4 as default };
//# sourceMappingURL=jog4.js.map