Initial commit.

This commit is contained in:
Woody Folsom
2012-03-06 11:42:35 -05:00
commit 8e83234a87
124 changed files with 9621 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package dk.itu.mario.engine.sonar;
public interface SoundProducer
{
public float read(float[] buf, int readRate);
public void skip(int samplesToSkip, int readRate);
public boolean isLive();
}