2021-09-27 23:48:06 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "context.h"
|
|
|
|
#include "tools/mathutils.h"
|
|
|
|
|
|
|
|
struct NoteInitializer
|
|
|
|
{
|
2021-11-02 13:03:27 -04:00
|
|
|
const Context *context;
|
2021-09-27 23:48:06 -04:00
|
|
|
std::vector<microsec> intervals;
|
|
|
|
microsec perfect_offset = 0;
|
|
|
|
};
|