Ndk/RenderSystem: Add backgrounds support

Former-commit-id: 3209be099cb65095f97f99f6ae1d7c44332ea924
This commit is contained in:
Lynix
2015-06-24 00:26:46 +02:00
parent c4783ac38f
commit 0895a9273d
3 changed files with 18 additions and 3 deletions

View File

@@ -8,4 +8,14 @@ namespace Ndk
System(renderSystem)
{
}
inline const NzBackgroundRef& RenderSystem::GetDefaultBackground() const
{
return m_background;
}
inline void RenderSystem::SetDefaultBackground(NzBackgroundRef background)
{
m_background = std::move(background);
}
}