select_move3.hpp 422 B

12345678910111213141516171819202122232425
  1. #ifndef SELECCT_MOVE3_HPP
  2. #define SELECCT_MOVE3_HPP
  3. #pragma once
  4. #include <furi.h>
  5. #include <gui/view.h>
  6. #include <gui/view_dispatcher.h>
  7. #include <gui/elements.h>
  8. #include <string>
  9. typedef struct App App;
  10. typedef struct {
  11. View* view;
  12. App* app;
  13. } SelectMove3;
  14. SelectMove3* select_move3_alloc(App* app);
  15. void select_move3_free(App* app);
  16. View* select_move3_get_view(App* app);
  17. #endif /* SELECCT_MOVE3_HPP */