diff options
| author | s-ol <s-ol@users.noreply.github.com> | 2019-09-06 09:54:58 +0000 |
|---|---|---|
| committer | s-ol <s-ol@users.noreply.github.com> | 2019-09-06 09:54:58 +0000 |
| commit | 77d1f54c12709aa3bf350b91c0e5ff81c77e353f (patch) | |
| tree | f922d5642ba5c3642067964ec1c6d06348bf655f /src/plugin.cpp | |
| parent | update to rack v1 compat (diff) | |
| download | vcvmods-77d1f54c12709aa3bf350b91c0e5ff81c77e353f.tar.gz vcvmods-77d1f54c12709aa3bf350b91c0e5ff81c77e353f.zip | |
add parameter descriptions
Diffstat (limited to 'src/plugin.cpp')
| -rw-r--r-- | src/plugin.cpp | 11 |
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); +} |
