File size: 315 Bytes
d46f4a3
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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;
}