mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-06 12:55:05 +00:00
20 lines
314 B
C
20 lines
314 B
C
struct DivSample {
|
|
String name;
|
|
int length, rate;
|
|
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) {}
|
|
};
|