| 12345678910111213141516171819202122232425262728293031323334353637 |
- // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
- // Please see LICENSE.md in repository root for license information
- // https://github.com/AtomicGameEngine/AtomicEditor
- #pragma once
- #include "UI/AEWidget.h"
- using namespace Atomic;
- using namespace tb;
- namespace tb
- {
- class TBLayout;
- }
- namespace AtomicEditor
- {
- class UIBuildSettingsWindows: public AEWidget
- {
- OBJECT(UIBuildSettingsWindows);
- public:
- UIBuildSettingsWindows(Context* context);
- virtual ~UIBuildSettingsWindows();
- bool OnEvent(const TBWidgetEvent &ev);
- //void HandleMessage(StringHash eventType, VariantMap& eventData);
- private:
- };
- }
|