@nebulaglitch/shopbot
Version:
A library to generate shopbot output
21 lines (18 loc) • 806 B
JavaScript
import Command from '../command.js';
class ValAxis extends Command {
constructor(cxLocation = null, yLocation = null, zLocation = null, aLocation = null, bLocation = null, tableBaseXLocation = null, tableBaseYlocation = null, tableBaseZLocation = null, tableBaseALocation = null, tableBaseBLocation = null){
super('VA');
this.args.push(cxLocation);
this.args.push(yLocation);
this.args.push(zLocation);
this.args.push(aLocation);
this.args.push(bLocation);
this.args.push(tableBaseXLocation);
this.args.push(tableBaseYlocation);
this.args.push(tableBaseZLocation);
this.args.push(tableBaseALocation);
this.args.push(tableBaseBLocation);
}
}
export { ValAxis as default };
//# sourceMappingURL=valaxis.js.map