view 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
line wrap: on
line source
1 package com.aurellem.capture.audio;
3 import com.jme3.audio.Listener;
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 */
13 public interface MultiListener {
15 void addListener(Listener l);
16 void registerSoundProcessor(Listener l, SoundProcessor sp);
17 void registerSoundProcessor(SoundProcessor sp);
19 }