You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
337B

  1. #include "plugin.hpp"
  2. Plugin *pluginInstance;
  3. void init(rack::Plugin *p) {
  4. pluginInstance = p;
  5. p->addModel(modelEvenVCO);
  6. p->addModel(modelRampage);
  7. p->addModel(modelABC);
  8. p->addModel(modelSpringReverb);
  9. p->addModel(modelMixer);
  10. p->addModel(modelSlewLimiter);
  11. p->addModel(modelDualAtenuverter);
  12. p->addModel(modelPercall);
  13. }