rlm@3: package com.aurellem.capture; rlm@3: rlm@3: import com.jme3.audio.Listener; rlm@3: rlm@3: public interface MultiListener { rlm@3: rlm@3: void addListener(Listener l); rlm@3: void registerSoundProcessor(Listener l, SoundProcessor sp); rlm@3: void registerSoundProcessor(SoundProcessor sp); rlm@3: rlm@3: }