Mercurial > jmeCapture
annotate src/com/aurellem/capture/MultiListener.java @ 4:edaa7e7806e4
migrated IsoTimer
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Tue, 25 Oct 2011 12:03:01 -0700 |
parents | a92de00f0414 |
children |
rev | line source |
---|---|
rlm@3 | 1 package com.aurellem.capture; |
rlm@3 | 2 |
rlm@3 | 3 import com.jme3.audio.Listener; |
rlm@3 | 4 |
rlm@3 | 5 public interface MultiListener { |
rlm@3 | 6 |
rlm@3 | 7 void addListener(Listener l); |
rlm@3 | 8 void registerSoundProcessor(Listener l, SoundProcessor sp); |
rlm@3 | 9 void registerSoundProcessor(SoundProcessor sp); |
rlm@3 | 10 |
rlm@3 | 11 } |