mirror of
https://github.com/stevenhowes/CTheEscape.git
synced 2026-05-26 15:53:29 +01:00
af20cab109
Commit of begging of port of TheEscape to C
9 lines
117 B
Plaintext
9 lines
117 B
Plaintext
#define COMPOSITION_MAX 128
|
|
struct CompositionElement {
|
|
int Start;
|
|
int Note;
|
|
int Volume;
|
|
int Channel;
|
|
int Length;
|
|
};
|