view 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
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 }