19 lines
535 B
C++
19 lines
535 B
C++
// Copyright (C) 2024 Jérôme "SirLynix" Leclercq (lynix680@gmail.com)
|
|
// This file is part of the "Nazara Engine - Graphics module"
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#pragma once
|
|
|
|
#ifndef NAZARA_GRAPHICS_FORMATS_MODELMESHLOADER_HPP
|
|
#define NAZARA_GRAPHICS_FORMATS_MODELMESHLOADER_HPP
|
|
|
|
#include <NazaraUtils/Prerequisites.hpp>
|
|
#include <Nazara/Graphics/Model.hpp>
|
|
|
|
namespace Nz::Loaders
|
|
{
|
|
ModelLoader::Entry GetModelLoader_Mesh();
|
|
}
|
|
|
|
#endif // NAZARA_GRAPHICS_FORMATS_MODELMESHLOADER_HPP
|