furnace/src/engine/sample.h

21 lines
314 B
C
Raw Normal View History

struct DivSample {
String name;
int length, rate;
2021-05-11 20:26:38 +00:00
signed char vol, pitch;
unsigned char depth;
short* data;
int rendLength;
short* rendData;
DivSample():
name(""),
length(0),
rate(0),
vol(0),
pitch(0),
depth(16),
data(NULL),
rendLength(0),
rendData(NULL) {}
};