This repository has been archived on 2025-08-12. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
dawd3/src/main/java/net/liquidev/d3r/AudioOutputStream.java
2022-11-20 23:06:55 +01:00

7 lines
163 B
Java

package net.liquidev.d3r;
public interface AudioOutputStream {
float[] getOutputBuffer(int sampleCount, int channelCount);
void error(String message);
}