12 lines
158 B
C
12 lines
158 B
C
#ifndef SOUNDCURVE_H
|
|
#define SOUNDCURVE_H
|
|
|
|
struct SoundCurve
|
|
{
|
|
const char *filename;
|
|
int knotCount;
|
|
float knots[8][2];
|
|
};
|
|
|
|
#endif // SOUNDCURVE_H
|