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