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.

26 lines
533B

  1. #include "AudibleInstruments.hpp"
  2. Plugin *plugin;
  3. void init(rack::Plugin *p) {
  4. plugin = p;
  5. p->slug = TOSTRING(SLUG);
  6. p->version = TOSTRING(VERSION);
  7. p->addModel(modelBraids);
  8. p->addModel(modelElements);
  9. p->addModel(modelTides);
  10. p->addModel(modelClouds);
  11. p->addModel(modelWarps);
  12. p->addModel(modelRings);
  13. p->addModel(modelLinks);
  14. p->addModel(modelKinks);
  15. p->addModel(modelShades);
  16. p->addModel(modelBranches);
  17. p->addModel(modelBlinds);
  18. p->addModel(modelVeils);
  19. p->addModel(modelFrames);
  20. p->addModel(modelPeaks);
  21. }