Commit of begging of port of TheEscape to C
This commit is contained in:
stevenhowes
2021-03-18 22:11:51 +00:00
parent fbb6451fe3
commit af20cab109
10 changed files with 390 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#define COMPOSITION_MAX 128
struct CompositionElement {
int Start;
int Note;
int Volume;
int Channel;
int Length;
};