I am trying to learn Irrphysx, but when i add the lines
Code: Select all
physxManager = createPhysxManager(device, sceneDesc, false);
removePhysxManager(physxManager);
error LNK2001: unresolved external symbol "void __cdecl IrrPhysx::removePhysxManager(class IrrPhysx::IPhysxManager *)" (?removePhysxManager@IrrPhysx@@YAXPAVIPhysxManager@1@@Z)
error LNK2001: unresolved external symbol "class IrrPhysx::IPhysxManager * __cdecl IrrPhysx::createPhysxManager(class irr::IrrlichtDevice *,struct IrrPhysx::SSceneDesc const &,bool)" (?createPhysxManager@IrrPhysx@@YAPAVIPhysxManager@1@PAVIrrlichtDevice@irr@@ABUSSceneDesc@1@_N@Z)
One error for each of the lines of code. Does anybody know why this is happening and how to fix it?