Hey, ive got this problem with a function im trying to write:
#include "sdGenesis.h"
sdPlayerMovement ( MXPD1, MYPD1, SetAdMiniCam ) ;
int dbPlayerMovement ( int MXPD1, int MYPD1, int SetAdMiniCam );
int dbPlayerMovement ( int MXPD1, int MYPD1, int SetAdMiniCam ) { }
.\main.cpp(261) : error C3861: 'sdPlayerMovement': identifier not found
The first two lines are in my main C++ file, then the third is in my header file and the forth is in my C++ source file with the code in it, any ideas why im getting the 5th line error?