Files
OpenVulkano/openVulkanoCpp/Scene/MeshLoader.hpp
2025-02-11 20:29:04 +02:00

22 lines
586 B
C++

/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#pragma once
#include <filesystem>
#include <string>
namespace OpenVulkano::Scene
{
class Geometry;
class MeshLoader
{
static void ParseAssimpFile(Geometry *geometry, const std::filesystem::path& file);
static void ParseUSDFile(Geometry *geometry, const std::filesystem::path& file);
public:
static Geometry* LoadFromFile(const std::filesystem::path& file);
};
}