UIPlatformsInfo.h 547 B

1234567891011121314151617181920212223242526272829
  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 PlatformsInfo: public UIModalOpWindow
  11. {
  12. OBJECT(PlatformsInfo);
  13. public:
  14. PlatformsInfo(Context* context);
  15. virtual ~PlatformsInfo();
  16. bool OnEvent(const TBWidgetEvent &ev);
  17. private:
  18. };
  19. }