AronaCore/core/widget/compound_widget.cpp

9 lines
179 B
C++

#include "compound_widget.h"
void compound_widget::set_content(const std::shared_ptr<widget>& content) {
child_ = content;
}
void compound_widget::on_paint(ImGuiIO& io) {
}