Files
oak-editor/project/selection.h
T
2018-09-22 21:58:16 +10:00

17 lines
197 B
C

#ifndef SELECTION_H
#define SELECTION_H
struct Selection {
long in;
long out;
int track;
long old_in;
long old_out;
int old_track;
bool trim_in;
};
#endif // SELECTION_H