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
358B

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