28 lines
606 B
Java

package com.hbm.sound;
public class AudioWrapper {
public void setKeepAlive(int keepAlive) { }
public void keepAlive() { }
public void updatePosition(float x, float y, float z) { }
public void updateVolume(float volume) { }
public void updateRange(float range) { }
public void updatePitch(float pitch) { }
public float getVolume() { return 0F; }
public float getRange() { return 0F; }
public float getPitch() { return 0F; }
public void setDoesRepeat(boolean repeats) { }
public void startSound() { }
public void stopSound() { }
public boolean isPlaying() { return false; }
}