wip: project compiles

This commit is contained in:
2023-08-08 12:51:37 +04:00
parent d565817d8f
commit d98e311d16
11 changed files with 4981 additions and 162 deletions

View File

@@ -21,13 +21,4 @@ public:
~Synth();
void ProduceNoteSound(Note input);
const std::vector<float> & GetOutSignal() { return m_out_signal; }
};
Synth::Synth(/* args */)
{
m_oscillators.push_back(new Oscillator(OscillatorType::Sine, 440.f, VOLUME));
}
Synth::~Synth()
{
}
};