MCPcopy Create free account
hub / github.com/JeanPhilippeKernel/RendererEngine / UIComponent

Method UIComponent

ZEngine/src/UIComponent.cpp:5–5  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3
4namespace 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected