Recently I bought the Dark Game Studio Bonanza, including DarkAI and DarkPhysics. I downloaded the DarkGDK versions and included the .h files in the Include folder and put the .lib files in the Lib folder (the main Lib folder as well as vs9 subfolder, just to be sure).
I put these below my #include <DarkGDK.h>
#include <DarkAI.h>
#include <DarkPhysics.h>
To start either of the two you have to give the start command, in case of DarkAI that would be AIStart();. However when trying to compile it I get a LNK2019 error... The number seems to differ sometimes. Same problem goes for DarkPhysics... Any idea what is going on?
1>Main.obj : error LNK2019: unresolved external symbol "void __cdecl AIStart(void)" (?AIStart@@YAXXZ) referenced in function "void __cdecl DarkGDK(void)" (?DarkGDK@@YAXXZ)
1>Release\Dark GDK - 3D Game1.exe : fatal error LNK1120: 1 unresolved externals
Note: I am certain I put them in the correct folders, I copied them both to the x32 and x64 version of the folders, with no result...