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