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.

21 lines
673B

  1. #include "DrumKit.hpp"
  2. RACK_PLUGIN_MODEL_DECLARE(DrumKit, BD9);
  3. RACK_PLUGIN_MODEL_DECLARE(DrumKit, Snare);
  4. RACK_PLUGIN_MODEL_DECLARE(DrumKit, ClosedHH);
  5. RACK_PLUGIN_MODEL_DECLARE(DrumKit, OpenHH);
  6. RACK_PLUGIN_MODEL_DECLARE(DrumKit, DMX);
  7. RACK_PLUGIN_INIT(DrumKit) {
  8. RACK_PLUGIN_INIT_ID();
  9. RACK_PLUGIN_INIT_WEBSITE("https://github.com/JerrySievert/DrumKit");
  10. RACK_PLUGIN_INIT_MANUAL("https://github.com/JerrySievert/DrumKit/blob/master/README.md");
  11. RACK_PLUGIN_MODEL_ADD(DrumKit, BD9);
  12. RACK_PLUGIN_MODEL_ADD(DrumKit, Snare);
  13. RACK_PLUGIN_MODEL_ADD(DrumKit, ClosedHH);
  14. RACK_PLUGIN_MODEL_ADD(DrumKit, OpenHH);
  15. RACK_PLUGIN_MODEL_ADD(DrumKit, DMX);
  16. }