Skip to content

Commit

Permalink
added default to library
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisppaul committed May 26, 2024
1 parent ee73425 commit 70c70d3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@
*/
public class InstrumentDSPLibrary {

public static class DEFAULT extends InstrumentDSP {
public DEFAULT(int pID) {
super(pID);
}
}

public static class BELL extends InstrumentDSP {

private static final int NUM_OSC = 7;
Expand Down
6 changes: 6 additions & 0 deletions src/wellen/InstrumentDSPLibrary.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@
*/
public class InstrumentDSPLibrary {

public static class DEFAULT extends InstrumentDSP {
public DEFAULT(int pID) {
super(pID);
}
}

public static class BELL extends InstrumentDSP {

private static final int NUM_OSC = 7;
Expand Down
Binary file modified wellen.zip
Binary file not shown.

0 comments on commit 70c70d3

Please sign in to comment.