UIInfoModule3D.h 664 B

12345678910111213141516171819202122232425262728293031
  1. // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
  2. // Please see LICENSE.md in repository root for license information
  3. // https://github.com/AtomicGameEngine/AtomicGameEngine
  4. #pragma once
  5. #include "UIModalOps.h"
  6. #include <TurboBadger/tb_select.h>
  7. #include <TurboBadger/tb_select_item.h>
  8. namespace AtomicEditor
  9. {
  10. class InfoModule3D : public UIModalOpWindow
  11. {
  12. OBJECT(InfoModule3D);
  13. public:
  14. InfoModule3D(Context* context, const String &exampleFolder, const String &exampleScreenshot);
  15. virtual ~InfoModule3D();
  16. bool OnEvent(const TBWidgetEvent &ev);
  17. private:
  18. String exampleFolder_;
  19. String exampleScreenshot_;
  20. };
  21. }