25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SceneModeSelection.h 399 B

123456789101112131415161718192021
  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