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
618B

  1. #include "Southpole.hpp"
  2. RACK_PLUGIN_MODEL_DECLARE(Southpole_parasites, Annuli);
  3. RACK_PLUGIN_MODEL_DECLARE(Southpole_parasites, Smoke);
  4. RACK_PLUGIN_MODEL_DECLARE(Southpole_parasites, Splash);
  5. RACK_PLUGIN_INIT(Southpole_parasites) {
  6. RACK_PLUGIN_INIT_ID();
  7. RACK_PLUGIN_INIT_WEBSITE("https://github.com/gbrandt1/southpole-vcvrack");
  8. RACK_PLUGIN_INIT_MANUAL("https://github.com/gbrandt1/southpole-vcvrack/blob/master/README.md");
  9. RACK_PLUGIN_MODEL_ADD(Southpole_parasites, Annuli);
  10. RACK_PLUGIN_MODEL_ADD(Southpole_parasites, Smoke); // crashes
  11. RACK_PLUGIN_MODEL_ADD(Southpole_parasites, Splash);
  12. }