aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugin.cpp')
-rw-r--r--src/plugin.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/plugin.cpp b/src/plugin.cpp
new file mode 100644
index 0000000..ddf1e47
--- /dev/null
+++ b/src/plugin.cpp
@@ -0,0 +1,11 @@
+#include "plugin.hpp"
+
+Plugin *pluginInstance;
+
+void init(rack::Plugin *p) {
+ pluginInstance = p;
+
+ p->addModel(modelCircleVCO);
+ p->addModel(modelWrapComp);
+ p->addModel(modelModulo);
+}