#ifndef OBJPARSER_H #define OBJPARSER_H #include #include #include "mesh.h" namespace OBJ{ Mesh& buildMeshFromFile(Mesh &mesh, std::string &path); bool fileExists(std::string &path); //Get vertices and Normal data void loadFileData(Mesh &mesh, std::ifstream &file); std::vector split(std::string &str, char delim); } #endif