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