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.

23 lines
887B

  1. #include "skylights.hh"
  2. #include "recorder-module.hh"
  3. // RACK_PLUGIN_MODEL_DECLARE(Skylights, recorder_model);
  4. RACK_PLUGIN_MODEL_DECLARE(Skylights, whatnote_model);
  5. RACK_PLUGIN_MODEL_DECLARE(Skylights, turing_model);
  6. RACK_PLUGIN_MODEL_DECLARE(Skylights, turing_volts_model);
  7. RACK_PLUGIN_MODEL_DECLARE(Skylights, turing_pulse_model);
  8. RACK_PLUGIN_MODEL_DECLARE(Skylights, turing_vactrol_model);
  9. RACK_PLUGIN_INIT(Skylights) {
  10. RACK_PLUGIN_INIT_ID();
  11. RACK_PLUGIN_INIT_VERSION("0.6.3");
  12. RACK_PLUGIN_INIT_WEBSITE("https://github.com/Skrylar/skylights-vcv/");
  13. // RACK_PLUGIN_MODEL_ADD(Skylights, recorder_model);
  14. RACK_PLUGIN_MODEL_ADD(Skylights, whatnote_model);
  15. RACK_PLUGIN_MODEL_ADD(Skylights, turing_model);
  16. RACK_PLUGIN_MODEL_ADD(Skylights, turing_volts_model);
  17. RACK_PLUGIN_MODEL_ADD(Skylights, turing_pulse_model);
  18. RACK_PLUGIN_MODEL_ADD(Skylights, turing_vactrol_model);
  19. }