| 45 | } |
| 46 | |
| 47 | bool UIComponent::HasChildren() const { |
| 48 | return m_children.size() > 0; |
| 49 | } |
| 50 | |
| 51 | void UIComponent::AddChild(Ref<UIComponent>& item) { |
| 52 | if (!item->HasParentUI()) { |
nothing calls this directly
no outgoing calls
no test coverage detected