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.

17 lines
303B

  1. #include "ModuleDragType.hpp"
  2. namespace rack_plugin_rcm {
  3. struct BaseWidget;
  4. struct ColourDragging : public ModuleDragType {
  5. BaseWidget* widget;
  6. ColourDragging(BaseWidget* widget);
  7. virtual ~ColourDragging();
  8. void onDragMove(rack::EventDragMove& e) override;
  9. };
  10. } // namespace rack_plugin_rcm