我正在尝试使用此obj 加载器加载包含球体顶点的 obj 文件,并且在编译时出现此错误:
1>ShaderPerspective.obj : error LNK2019: unresolved external symbol "public: int __thiscall objLoader::load(char *)" (?load@objLoader@@QAEHPAD@Z) referenced in function "void __cdecl loadObj(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?loadObj@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z
)
失败的代码是:
void loadObj(const std::string &strObjFile)
{
objLoader *objData = new objLoader();
objData->load("data\\sphere.obj");
}
我知道这是一个链接器错误,但作为 c++ 和 Visual Studio 的初学者,如果有人能指出我如何让它工作的正确方向,我将不胜感激。