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.

43 lines
1.9KB

  1. #include "AudibleInstruments.hpp"
  2. RACK_PLUGIN_MODEL_DECLARE(AudibleInstruments, Braids);
  3. RACK_PLUGIN_MODEL_DECLARE(AudibleInstruments, Elements);
  4. RACK_PLUGIN_MODEL_DECLARE(AudibleInstruments, Tides);
  5. RACK_PLUGIN_MODEL_DECLARE(AudibleInstruments, Clouds);
  6. RACK_PLUGIN_MODEL_DECLARE(AudibleInstruments, Warps);
  7. RACK_PLUGIN_MODEL_DECLARE(AudibleInstruments, Rings);
  8. RACK_PLUGIN_MODEL_DECLARE(AudibleInstruments, Links);
  9. RACK_PLUGIN_MODEL_DECLARE(AudibleInstruments, Kinks);
  10. RACK_PLUGIN_MODEL_DECLARE(AudibleInstruments, Shades);
  11. RACK_PLUGIN_MODEL_DECLARE(AudibleInstruments, Branches);
  12. RACK_PLUGIN_MODEL_DECLARE(AudibleInstruments, Blinds);
  13. RACK_PLUGIN_MODEL_DECLARE(AudibleInstruments, Veils);
  14. RACK_PLUGIN_MODEL_DECLARE(AudibleInstruments, Frames);
  15. RACK_PLUGIN_MODEL_DECLARE(AudibleInstruments, Marbles);
  16. RACK_PLUGIN_MODEL_DECLARE(AudibleInstruments, Plaits);
  17. RACK_PLUGIN_MODEL_DECLARE(AudibleInstruments, Stages);
  18. RACK_PLUGIN_INIT(AudibleInstruments) {
  19. RACK_PLUGIN_INIT_ID();
  20. RACK_PLUGIN_INIT_VERSION("0.6.3");
  21. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Braids);
  22. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Elements);
  23. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Tides);
  24. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Clouds);
  25. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Warps);
  26. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Rings);
  27. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Links);
  28. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Kinks);
  29. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Shades);
  30. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Branches);
  31. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Blinds);
  32. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Veils);
  33. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Frames);
  34. // RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Peaks);
  35. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Marbles);
  36. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Plaits);
  37. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Stages);
  38. }