comparison src/com/aurellem/capture/audio/MultiListener.java @ 51:6a1b28f060e6

interface documentation
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Dec 2011 13:42:30 -0600
parents 5dfc9e768816
children
comparison
equal deleted inserted replaced
50:8a091a5f48fa 51:6a1b28f060e6
1 package com.aurellem.capture.audio; 1 package com.aurellem.capture.audio;
2 2
3 import com.jme3.audio.Listener; 3 import com.jme3.audio.Listener;
4
5 /**
6 * This interface lets you:
7 * 1.) Get at rendered 3D-sound data.
8 * 2.) Create additional listeners which each hear
9 * the world from their own perspective.
10 * @author Robert McIntyre
11 */
4 12
5 public interface MultiListener { 13 public interface MultiListener {
6 14
7 void addListener(Listener l); 15 void addListener(Listener l);
8 void registerSoundProcessor(Listener l, SoundProcessor sp); 16 void registerSoundProcessor(Listener l, SoundProcessor sp);