// Copyright (C) 2015 Jérôme Leclercq // This file is part of the "Nazara Engine - Graphics module" // For conditions of distribution and use, see copyright notice in Config.hpp #include #include inline const NzTextureRef& NzTextureBackground::GetTexture() const { return m_texture; } inline void NzTextureBackground::SetTexture(NzTextureRef texture) { NazaraAssert(!texture || texture->IsValid(), "Invalid texture"); m_texture = std::move(texture); } template NzTextureBackgroundRef NzTextureBackground::New(Args&&... args) { std::unique_ptr object(new NzTextureBackground(std::forward(args)...)); object->SetPersistent(false); return object.release(); } #include