#ifndef _MESH3D #define _MESH3D #include #include namespace djalim { class Mesh3D { public: // Constructor Mesh3D(const std::string& filepath); std::vector meshVertices; void loadOBJFile(const std::string& filepath); }; } #endif // !_MESH3D