Move files in anticipation of move to modular system
This commit is contained in:
10
src/main/java/sound/Producer.java
Normal file
10
src/main/java/sound/Producer.java
Normal file
@@ -0,0 +1,10 @@
|
||||
package sound;
|
||||
|
||||
import java.io.InputStream;
|
||||
|
||||
public interface Producer extends Format {
|
||||
public InputStream getInputStream();
|
||||
public void start();
|
||||
public void stop();
|
||||
public void exit();
|
||||
}
|
||||
Reference in New Issue
Block a user