Commit forgotten files

Former-commit-id: dd296ce0e7c4128c35b41cbe753ffb572858ba6c
This commit is contained in:
Lynix
2015-09-25 23:17:44 +02:00
parent eaf1bb3601
commit fe2e47478e
3 changed files with 12 additions and 12 deletions

View File

@@ -53,9 +53,9 @@ namespace Nz
}
template<typename... Args>
NzCylinderGeomRef NzCylinderGeom::New(Args&&... args)
CylinderGeomRef CylinderGeom::New(Args&&... args)
{
std::unique_ptr<NzCylinderGeom> object(new NzCylinderGeom(std::forward<Args>(args)...));
std::unique_ptr<CylinderGeom> object(new CylinderGeom(std::forward<Args>(args)...));
object->SetPersistent(false);
return object.release();