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.

17 lines
553B

  1. #include "mtsch.hpp"
  2. RACK_PLUGIN_MODEL_DECLARE(mtsch_plugins, Sum);
  3. RACK_PLUGIN_MODEL_DECLARE(mtsch_plugins, Rationals);
  4. RACK_PLUGIN_MODEL_DECLARE(mtsch_plugins, TriggerPanic);
  5. RACK_PLUGIN_INIT(mtsch_plugins) {
  6. RACK_PLUGIN_INIT_ID();
  7. RACK_PLUGIN_INIT_WEBSITE("https://github.com/mtsch/mtsch-vcvrack-plugins");
  8. RACK_PLUGIN_INIT_MANUAL("https://github.com/mtsch/mtsch-vcvrack-plugins");
  9. RACK_PLUGIN_MODEL_ADD(mtsch_plugins, Sum);
  10. RACK_PLUGIN_MODEL_ADD(mtsch_plugins, Rationals);
  11. RACK_PLUGIN_MODEL_ADD(mtsch_plugins, TriggerPanic);
  12. }