UIBuildSettingsWindows.h 649 B

12345678910111213141516171819202122232425262728293031323334353637
  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/AtomicEditor
  4. #pragma once
  5. #include "UI/AEWidget.h"
  6. using namespace Atomic;
  7. using namespace tb;
  8. namespace tb
  9. {
  10. class TBLayout;
  11. }
  12. namespace AtomicEditor
  13. {
  14. class UIBuildSettingsWindows: public AEWidget
  15. {
  16. OBJECT(UIBuildSettingsWindows);
  17. public:
  18. UIBuildSettingsWindows(Context* context);
  19. virtual ~UIBuildSettingsWindows();
  20. bool OnEvent(const TBWidgetEvent &ev);
  21. //void HandleMessage(StringHash eventType, VariantMap& eventData);
  22. private:
  23. };
  24. }