mirror of
https://github.com/stevenhowes/CTheEscape.git
synced 2026-05-27 00:03:27 +01:00
10 lines
184 B
C
10 lines
184 B
C
#define COMPOSITION_MAX 128
|
|
|
|
struct CompositionElement {
|
|
signed short int Start;
|
|
unsigned char Note;
|
|
signed char Volume;
|
|
unsigned char Channel;
|
|
unsigned short int Length;
|
|
};
|