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.
 
 
 
 
 
 

22 lines
383 B

  1. #ifndef SCENE_TOP_MENU_H
  2. #define SCENE_TOP_MENU_H
  3. #include "Scenes/Scene.h"
  4. class SceneTopMenu : 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 = 0;
  14. String m_menu_name;
  15. void ValidateSelection();
  16. };
  17. #endif