mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
18 lines
318 B
Java
18 lines
318 B
Java
package com.hbm.sound;
|
|
|
|
public class AudioWrapper {
|
|
|
|
public void updatePosition(float x, float y, float z) { }
|
|
|
|
public void updateVolume(float pitch) { }
|
|
|
|
public void updatePitch(float pitch) { }
|
|
|
|
public void setDoesRepeat(boolean repeats) { }
|
|
|
|
public void startSound() { }
|
|
|
|
public void stopSound() { }
|
|
|
|
}
|