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

  1. #ifndef SCENE_MODE_SELECTION_H
  2. #define SCENE_MODE_SELECTION_H
  3. #include "Scenes/Scene.h"
  4. class SceneModeSelection : public Scene
  5. {
  6. public:
  7. void Initialize() override;
  8. void Update() override;
  9. void Draw(GraphicsEngine *graphics) override;
  10. void OnButtonClic(BTN btn) override;
  11. void Destroy() override;
  12. private:
  13. int8_t m_selection;
  14. uint8_t m_progress = 0;
  15. String m_selection_text;
  16. };
  17. #endif