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

  1. #ifndef TEST_SCENE_H
  2. #define TEST_SCENE_H
  3. #include "Scenes/Scene.h"
  4. class TestScene : 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. PopUp popup;
  14. };
  15. #endif