#pragma once #include "tools/mathutils.h" struct BPMSection { int bpm = 0; int fraction = 1; microsec offset_start = 0; inline bool operator<(const BPMSection& right) { return offset_start < right.offset_start; } };