PicoWaveTracker/TrackerTypes.h
2026-02-17 00:19:39 +01:00

12 lines
169 B
C

#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