NazaraEngine/include/Nazara/Widgets/Widgets.inl

19 lines
476 B
C++

// Copyright (C) 2024 Jérôme "SirLynix" Leclercq (lynix680@gmail.com)
// This file is part of the "Nazara Engine - Widgets module"
// For conditions of distribution and use, see copyright notice in Export.hpp
namespace Nz
{
inline const std::shared_ptr<MaterialInstance>& Widgets::GetOpaqueMaterial() const
{
return m_opaqueMaterial;
}
inline const std::shared_ptr<MaterialInstance>& Widgets::GetTransparentMaterial() const
{
return m_transparentMaterial;
}
}