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.

34 lines
1.3KB

  1. //***********************************************************************************************
  2. //Geodesics: A modular collection for VCV Rack by Pierre Collard and Marc Boulé
  3. //
  4. //Based on code from the Fundamental plugins by Andrew Belt
  5. // and graphics from the Component Library by Wes Milholen
  6. //See ./LICENSE.txt for all licenses
  7. //See ./res/fonts/ for font licenses
  8. //
  9. //***********************************************************************************************
  10. #include "Geodesics.hpp"
  11. RACK_PLUGIN_MODEL_DECLARE(Geodesics, BlackHoles);
  12. RACK_PLUGIN_MODEL_DECLARE(Geodesics, Pulsars);
  13. RACK_PLUGIN_MODEL_DECLARE(Geodesics, Branes);
  14. RACK_PLUGIN_MODEL_DECLARE(Geodesics, Ions);
  15. RACK_PLUGIN_MODEL_DECLARE(Geodesics, BlankLogo);
  16. RACK_PLUGIN_MODEL_DECLARE(Geodesics, BlankInfo);
  17. RACK_PLUGIN_INIT(Geodesics) {
  18. RACK_PLUGIN_INIT_ID();
  19. RACK_PLUGIN_INIT_WEBSITE("https://github.com/MarcBoule/Geodesics");
  20. RACK_PLUGIN_INIT_MANUAL("https://github.com/MarcBoule/Geodesics/blob/master/README.md");
  21. RACK_PLUGIN_MODEL_ADD(Geodesics, BlackHoles);
  22. RACK_PLUGIN_MODEL_ADD(Geodesics, Pulsars);
  23. RACK_PLUGIN_MODEL_ADD(Geodesics, Branes);
  24. RACK_PLUGIN_MODEL_ADD(Geodesics, Ions);
  25. RACK_PLUGIN_MODEL_ADD(Geodesics, BlankLogo);
  26. RACK_PLUGIN_MODEL_ADD(Geodesics, BlankInfo);
  27. }