Move files in anticipation of move to modular system

This commit is contained in:
2016-07-03 12:28:35 +01:00
commit 5a6ca8046c
33 changed files with 3939 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package old;
import sound.Consumer;
import sound.Producer;
public abstract class Transducer implements Consumer, Producer {
public int rate;
public Transducer(Producer producer) {
//setProducer(producer);
}
public int getRate() {
return rate;
}
}