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.

36 lines
1.5KB

  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_INIT(AudibleInstruments) {
  16. RACK_PLUGIN_INIT_ID();
  17. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Braids);
  18. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Elements);
  19. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Tides);
  20. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Clouds);
  21. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Warps);
  22. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Rings);
  23. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Links);
  24. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Kinks);
  25. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Shades);
  26. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Branches);
  27. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Blinds);
  28. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Veils);
  29. RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Frames);
  30. // RACK_PLUGIN_MODEL_ADD(AudibleInstruments, Peaks);
  31. }