aboutsummaryrefslogtreecommitdiff
path: root/src/theme_builder/components/ConditionEditor.h
blob: f32da3047fc1693ad93b39986bcd2fc50408ab2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once
#include "cru/ui/components/Component.h"

namespace cru::theme_builder {
class ConditionEditor : public ui::components::Component {
 public:
  ConditionEditor();

  ~ConditionEditor() override;

 public:
  ui::controls::Control* GetRootControl() override { return nullptr; }

 private:
};
}  // namespace cru::theme_builder