mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
28 lines
606 B
Java
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; }
|
|
}
|