@nebulaglitch/shopbot
Version:
A library to generate shopbot output
15 lines (12 loc) • 389 B
JavaScript
import Command from '../command.js';
class MoveSetSpeed extends Command {
constructor(xySpeed = null, zSpeed = null, aSpeed = null, bSpeed = null){
super('MS');
this.args.push(xySpeed);
this.args.push(zSpeed);
this.args.push(aSpeed);
this.args.push(bSpeed);
}
}
export { MoveSetSpeed as default };
//# sourceMappingURL=movesetspeed.js.map