annotate src/com/aurellem/capture/audio/MultiListener.java @ 73:877ae4b2993c tip

merge laptop changes.
author Robert McIntyre <rlm@mit.edu>
date Mon, 10 Mar 2014 18:58:08 -0400
parents 6a1b28f060e6
children
rev   line source
rlm@9 1 package com.aurellem.capture.audio;
rlm@9 2
rlm@9 3 import com.jme3.audio.Listener;
rlm@9 4
rlm@51 5 /**
rlm@51 6 * This interface lets you:
rlm@51 7 * 1.) Get at rendered 3D-sound data.
rlm@51 8 * 2.) Create additional listeners which each hear
rlm@51 9 * the world from their own perspective.
rlm@51 10 * @author Robert McIntyre
rlm@51 11 */
rlm@51 12
rlm@9 13 public interface MultiListener {
rlm@9 14
rlm@9 15 void addListener(Listener l);
rlm@9 16 void registerSoundProcessor(Listener l, SoundProcessor sp);
rlm@9 17 void registerSoundProcessor(SoundProcessor sp);
rlm@9 18
rlm@9 19 }