#ifndef EXAMPLE_OBJ_LOADER_H_ #define EXAMPLE_OBJ_LOADER_H_ #include #include #include "mesh.h" #include "material.h" namespace example { /// /// Loads wavefront .obj mesh /// bool LoadObj(const std::string &filename, float scale, std::vector > *meshes, std::vector *materials, std::vector *textures); } #endif // EXAMPLE_OBJ_LOADER_H_