12 lines
169 B
C
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 |