11 lines
315 B
Java
11 lines
315 B
Java
|
package net.minecraft.client.sounds;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
import java.nio.ByteBuffer;
|
||
|
import net.minecraftforge.api.distmarker.Dist;
|
||
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
||
|
|
||
|
@OnlyIn(Dist.CLIENT)
|
||
|
public interface FiniteAudioStream extends AudioStream {
|
||
|
ByteBuffer readAll() throws IOException;
|
||
|
}
|