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.

19 lines
309B

  1. #pragma once
  2. #include "common.hpp"
  3. #include "widgets/FramebufferWidget.hpp"
  4. #include "widgets/SVGWidget.hpp"
  5. namespace rack {
  6. /** If you don't add these to your ModuleWidget, they will fall out of the rack... */
  7. struct SVGScrew : FramebufferWidget {
  8. SVGWidget *sw;
  9. SVGScrew();
  10. };
  11. } // namespace rack