Full module system

This commit is contained in:
Ryzerth
2020-08-12 16:43:44 +02:00
parent cdea80f8c5
commit 31a95031e4
15 changed files with 174 additions and 37 deletions

6
src/audio.h Normal file
View File

@@ -0,0 +1,6 @@
#pragma once
#include <dsp/stream.h>
namespace audio {
void registerStream(dsp::stream<float>* stream, std::string name, std::string vfoName);
};