view src/com/aurellem/capture/audio/MultiListener.java @ 29:9f58273090df

added AudioFormat to AudioSendRenderer
author Robert McIntyre <rlm@mit.edu>
date Sun, 30 Oct 2011 10:06:38 -0700
parents 5dfc9e768816
children 6a1b28f060e6
line wrap: on
line source
1 package com.aurellem.capture.audio;
3 import com.jme3.audio.Listener;
5 public interface MultiListener {
7 void addListener(Listener l);
8 void registerSoundProcessor(Listener l, SoundProcessor sp);
9 void registerSoundProcessor(SoundProcessor sp);
11 }