comparison src/com/aurellem/capture/MultiListener.java @ 3:a92de00f0414

migrating files
author Robert McIntyre <rlm@mit.edu>
date Tue, 25 Oct 2011 11:55:55 -0700
parents
children
comparison
equal deleted inserted replaced
2:59509c585530 3:a92de00f0414
1 package com.aurellem.capture;
2
3 import com.jme3.audio.Listener;
4
5 public interface MultiListener {
6
7 void addListener(Listener l);
8 void registerSoundProcessor(Listener l, SoundProcessor sp);
9 void registerSoundProcessor(SoundProcessor sp);
10
11 }