Files
linguist/samples/SuperCollider/WarpPreset.sc
2014-10-22 10:16:30 -04:00

19 lines
194 B
Python

WarpPreset {
*new {|path|
if(path.notNil) {
^Object.readArchive(path);
};
^super.new.init();
}
init {
}
save {
Dialog.savePanel({|path|
this.writeArchive(path);
});
}
}