mirror of
https://github.com/stevenhowes/CTheEscape.git
synced 2026-05-26 15:53:29 +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;
|
|
};
|