blob: 2a6d791b72bc972c6dcb538b8724ead79b110ae9 (
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.h"
namespace engine {
o3d::Mesh parse_object(const std::string& obj_path);
}
#endif // OBJ_PARSER_H
|