Re: How to do correct movement -
19-01-2005
You need to look if they are linker errors, or if they are compiler errors. If they are linker errors it means you haven't got the .cpp file for the function included, but you can't include many of these from the SDK as they all need each other. You just end up with loads more errors. However if they are compiler errors then you can just add the .h header file which the function/class is defined in.
The only .cpp file I have included is mathlib.cpp, and I only have a few header files but they depend on what you try to use. e.g. if you're trying to use the vector maths then you need vector.h etc..
|