| 3 | |
| 4 | namespace ZEngine::Components::UI { |
| 5 | UIComponent::UIComponent(std::string_view name, bool visibility) : m_name(name.data()), m_visibility(visibility) {} |
| 6 | |
| 7 | UIComponent::UIComponent(const Ref<Layers::ImguiLayer>& layer, std::string_view name, bool visibility) : m_parent_layer(layer), m_name(name.data()), m_visibility(visibility) {} |
| 8 |
nothing calls this directly
no outgoing calls
no test coverage detected