- remove some unnecessary methods from AudioSource interface

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10417 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
nor..67 2013-02-20 18:51:44 +00:00
parent 22eb83fd9a
commit 7b4f4b8678

View File

@ -45,19 +45,6 @@ public interface AudioSource {
*/
public int getChannel();
/**
* Start playing the audio.
*/
public void play();
/**
* Start playing an instance of this audio. This method can be used
* to play the same <code>AudioSource</code> multiple times. Note
* that changes to the parameters of this AudioSource will not effect the
* instances already playing.
*/
public void playInstance();
/**
* @return The {#link Filter dry filter} that is set.
* @see AudioSource#setDryFilter(com.jme3.audio.Filter)