NazaraEngine/include/Nazara/Utility/VertexDeclaration.inl

18 lines
528 B
C++

// Copyright (C) 2015 Jérôme Leclercq
// This file is part of the "Nazara Engine - Utility module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <memory>
#include <Nazara/Utility/Debug.hpp>
template<typename... Args>
NzVertexDeclarationRef NzVertexDeclaration::New(Args&&... args)
{
std::unique_ptr<NzVertexDeclaration> object(new NzVertexDeclaration(std::forward<Args>(args)...));
object->SetPersistent(false);
return object.release();
}
#include <Nazara/Utility/DebugOff.hpp>