blob: 5d4e15ccba9ac57eca1b505ae43e29444a48b0f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "button.hpp"
#include "ui/ui_manager.hpp"
#include "ui/render/border_render_object.hpp"
namespace cru::ui::controls {
Button::Button() {
const auto predefined_resource =
UiManager::GetInstance()->GetPredefineResources();
render_object_ = new render::BorderRenderObject(); }
void Button::OnChildChanged(Control* old_child, Control* new_child) {}
} // namespace cru::ui::controls
|