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.

25 lines
919B

  1. #include "Koralfx-Modules.hpp"
  2. RACK_PLUGIN_MODEL_DECLARE(Koralfx, Beatovnik);
  3. RACK_PLUGIN_MODEL_DECLARE(Koralfx, Mixovnik);
  4. RACK_PLUGIN_MODEL_DECLARE(Koralfx, Nullovnik4);
  5. RACK_PLUGIN_MODEL_DECLARE(Koralfx, Nullovnik6);
  6. RACK_PLUGIN_MODEL_DECLARE(Koralfx, Presetovnik);
  7. RACK_PLUGIN_MODEL_DECLARE(Koralfx, Quantovnik);
  8. RACK_PLUGIN_MODEL_DECLARE(Koralfx, Scorovnik);
  9. RACK_PLUGIN_INIT(Koralfx) {
  10. RACK_PLUGIN_INIT_ID();
  11. RACK_PLUGIN_INIT_WEBSITE("https://github.com/koralfx/Koralfx-Modules");
  12. RACK_PLUGIN_INIT_MANUAL("https://github.com/koralfx/Koralfx-Modules/blob/master/README.md");
  13. RACK_PLUGIN_MODEL_ADD(Koralfx, Beatovnik);
  14. RACK_PLUGIN_MODEL_ADD(Koralfx, Mixovnik);
  15. RACK_PLUGIN_MODEL_ADD(Koralfx, Nullovnik4);
  16. RACK_PLUGIN_MODEL_ADD(Koralfx, Nullovnik6);
  17. RACK_PLUGIN_MODEL_ADD(Koralfx, Presetovnik);
  18. RACK_PLUGIN_MODEL_ADD(Koralfx, Quantovnik);
  19. RACK_PLUGIN_MODEL_ADD(Koralfx, Scorovnik);
  20. }