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