Help Model Change (GOH)

05/26/2014 09:08 flyffdev#1
Please help me im trying to add Model Change (GOH) but it gives me error

05/27/2014 17:45 lolxdflyx3#2
[Only registered and activated users can see links. Click Here To Register...]

You have deklared a function but you have forgot to define the function.
For example:

Header.h:
Code:
void fuu(); //you have this
Source.cpp
Code:
void fuu() //that is what is missing... you forgot to leech this function
{
    //place code here
}
SomeWhereElse.cpp:
Code:
//....
fuu(); //function is called but the Linker dont know what code he has to do if fuu() is called! => LNK2019
//....

Good Luck

Mfg lolxdfly