@nebulaglitch/shopbot
Version:
A library to generate shopbot output
25 lines (20 loc) • 943 B
JavaScript
;
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
const command = require('../command.cjs');
class ValAxis extends command.default {
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);
}
}
exports.default = ValAxis;
//# sourceMappingURL=valaxis.cjs.map