Melody strategy

This commit is contained in:
Dejvino
2026-02-17 00:19:39 +01:00
parent 89f9821f5a
commit 1e475eeaa5
5 changed files with 180 additions and 50 deletions
+12
View File
@@ -0,0 +1,12 @@
#ifndef TRACKER_TYPES_H
#define TRACKER_TYPES_H
#include <stdint.h>
struct Step {
int8_t note; // MIDI Note (0-127), -1 for OFF
bool accent;
bool tie;
};
#endif