28 lines
650 B
C++
28 lines
650 B
C++
// 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 <memory>
|
|
#include <Nazara/Graphics/Debug.hpp>
|
|
|
|
namespace Nz
|
|
{
|
|
/*!
|
|
* \brief Creates a new Model from the arguments
|
|
* \return A reference to the newly created model
|
|
*
|
|
* \param args Arguments for the model
|
|
*/
|
|
|
|
template<typename... Args>
|
|
ModelRef Model::New(Args&&... args)
|
|
{
|
|
std::unique_ptr<Model> object(new Model(std::forward<Args>(args)...));
|
|
object->SetPersistent(false);
|
|
|
|
return object.release();
|
|
}
|
|
}
|
|
|
|
#include <Nazara/Graphics/DebugOff.hpp>
|