| 16 | namespace ZEngine::Rendering::Scenes { |
| 17 | |
| 18 | void GraphicScene::Initialize() { |
| 19 | m_renderer->Initialize(); |
| 20 | } |
| 21 | |
| 22 | GraphicSceneEntity GraphicScene::CreateEntity(std::string_view entity_name) { |
| 23 | GraphicSceneEntity graphic_entity(m_entity_registry->create(), m_entity_registry); |
nothing calls this directly
no outgoing calls
no test coverage detected