blob: d5ba6bb1b229f8cd838f7b8d507d10116ee1e9fd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef OBJ_PARSER_HPP
#define OBJ_PARSER_HPP
#include "o3d/mesh.hpp"
#include <filesystem>
namespace engine {
o3d::Mesh parse_object(const std::filesystem::path& obj_path);
}
#endif // OBJ_PARSER_HPP
|