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