annotate src/com/aurellem/capture/MultiListener.java @ 6:0634e72bad3e
don't need StdAudio since I'm now using builtin javax to write wav files
author |
Robert McIntyre <rlm@mit.edu> |
date |
Tue, 25 Oct 2011 12:07:56 -0700 |
parents |
a92de00f0414 |
children |
|
rev |
line source |
rlm@3
|
1 package com.aurellem.capture;
|
rlm@3
|
2
|
rlm@3
|
3 import com.jme3.audio.Listener;
|
rlm@3
|
4
|
rlm@3
|
5 public interface MultiListener {
|
rlm@3
|
6
|
rlm@3
|
7 void addListener(Listener l);
|
rlm@3
|
8 void registerSoundProcessor(Listener l, SoundProcessor sp);
|
rlm@3
|
9 void registerSoundProcessor(SoundProcessor sp);
|
rlm@3
|
10
|
rlm@3
|
11 }
|