#ifndef TRACKER_TYPES_H #define TRACKER_TYPES_H #include struct Step { int8_t note; // MIDI Note (0-127), -1 for OFF bool accent; bool tie; }; #endif