aboutsummaryrefslogtreecommitdiff
path: root/src/ui/controls/container.cpp
blob: 2075d4bab6748c68d6502f692a72bb910a2f13b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "cru/ui/controls/container.hpp"

#include "cru/platform/graph/factory.hpp"
#include "cru/ui/render/border_render_object.hpp"

namespace cru::ui::controls {
Container::Container() {
  render_object_ = std::make_unique<render::BorderRenderObject>();
  render_object_->SetBorderEnabled(false);
}

Container::~Container() {}
}  // namespace cru::ui::controls