2025-11-24 22:52:51 +03:00

18 lines
344 B
Java

/*
* Decompiled with CFR 0.152.
*/
package net.minecraft.client.sounds;
import java.io.Closeable;
import java.io.IOException;
import java.nio.ByteBuffer;
import javax.sound.sampled.AudioFormat;
public interface AudioStream
extends Closeable {
public AudioFormat getFormat();
public ByteBuffer read(int var1) throws IOException;
}