mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 15:49:41 +02:00
12 lines
268 B
Java
12 lines
268 B
Java
// PmDefaults -- a small application to set PortMIDI default input/output
|
|
|
|
package pmdefaults;
|
|
|
|
public class PmDefaults {
|
|
public static void main(String[] args) {
|
|
System.out.println("starting main");
|
|
new PmDefaultsFrame("PortMIDI Setup");
|
|
}
|
|
}
|
|
|