@nebulaglitch/shopbot
Version:
A library to generate shopbot output
16 lines (13 loc) • 408 B
JavaScript
import Command from '../command.js';
class Move5 extends Command {
constructor(distanceX, distanceY, distanceZ, distanceA, distanceB){
super('M5');
this.args.push(distanceX);
this.args.push(distanceY);
this.args.push(distanceZ);
this.args.push(distanceA);
this.args.push(distanceB);
}
}
export { Move5 as default };
//# sourceMappingURL=move5.js.map