Utility: Remove useless file

Former-commit-id: e3b885151fe47d60bc4904605859b98d7b4c4110
This commit is contained in:
Lynix 2016-01-07 18:07:51 +01:00
parent 8441dcfa2a
commit ae6ba51380
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
// 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>
namespace Nz
{
template<typename... Args>
ImageRef Image::New(Args&&... args)
{
std::unique_ptr<Image> object(new Image(std::forward<Args>(args)...));
object->SetPersistent(false);
return object.release();
}
}
#include <Nazara/Utility/DebugOff.hpp>