initial commit

This commit is contained in:
2013-03-22 19:19:12 +01:00
commit 817fcc796d
44 changed files with 1931 additions and 0 deletions

8
src/sound/Consumer.java Normal file
View File

@@ -0,0 +1,8 @@
package sound;
public interface Consumer {
public void start(Producer producer);
public void start();
public void stop();
public void exit();
}