// Copyright (C) 2021 Jérôme Leclercq // This file is part of the "Nazara Engine - Utility module" // For conditions of distribution and use, see copyright notice in Prerequisites.hpp #include #include #include "GraphicsComponent.hpp" namespace Nz { inline void GraphicsComponent::AttachRenderable(std::shared_ptr renderable) { m_renderables.push_back(std::move(renderable)); } inline void GraphicsComponent::DetachRenderable(const std::shared_ptr& renderable) { auto it = std::find(m_renderables.begin(), m_renderables.end(), renderable); if (it != m_renderables.end()) m_renderables.erase(it); } inline const std::vector>& GraphicsComponent::GetRenderables() const { return m_renderables; } inline WorldInstance& GraphicsComponent::GetWorldInstance() { return m_worldInstance; } inline const WorldInstance& GraphicsComponent::GetWorldInstance() const { return m_worldInstance; } }