@nebulaglitch/gcode
Version:
A library to generate gcode output
15 lines (12 loc) • 363 B
JavaScript
import Command from '../command.js';
import Argument from '../argument.js';
class SubprogramCall extends Command {
constructor(filename = null){
super('M', 98);
if (filename !== null) {
this.args.push(new Argument('', filename));
}
}
}
export { SubprogramCall as default };
//# sourceMappingURL=subprogramcall.js.map