// Copyright (C) 2017 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 #include #include namespace Nz { template VertexDeclarationRef VertexDeclaration::New(Args&&... args) { std::unique_ptr object(new VertexDeclaration(std::forward(args)...)); object->SetPersistent(false); return object.release(); } template bool VertexDeclaration::HasComponentOfType(VertexComponent component) const { bool enabled; Nz::ComponentType type; GetComponent(component, &enabled, &type, nullptr); return enabled && GetComponentTypeOf() == type; } } #include