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

  1. #pragma once
  2. #include "app/common.hpp"
  3. #include "widgets/Widget.hpp"
  4. namespace rack {
  5. struct PluginManagerWidget : VirtualWidget {
  6. Widget *loginWidget;
  7. Widget *manageWidget;
  8. Widget *downloadWidget;
  9. PluginManagerWidget();
  10. void step() override;
  11. };
  12. } // namespace rack