Well, not that strange.
1>------ Build started: Project: starting off, Configuration: Debug Win32 ------
1>Compiling...
1>Main.cpp
1>c:\program files\the game creators\dark gdk\include\darksdkcamera.h(5) : fatal error C1083: Cannot open include file: 'd3dx9.h': No such file or directory
1>Build log was saved at "file://c:\Users\Duskling\Desktop\DarkGDK\Starting Off\starting off\starting off\Debug\BuildLog.htm"
1>starting off - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
what is the problem? i am using visual C++ 2008 express edition, i have the latest direct x, and i have the august 2007 direct x SDK. i have reinstalled many times, and it has not made any difference.
please help! heres my source code that im trying to compile:
// Dark GDK - The Game Creators - www.thegamecreators.com
// the wizard has created a very simple 2D project that uses Dark GDK
// it can be used as a starting point in making your own 2D games
// whenever using Dark GDK you must ensure you include the header file
#include "DarkGDK.h"
// the main entry point for the application is this function
void DarkGDK ( void )
{
dbsync();
dbSyncRate(60);
dbDisableEscapeKey();
while(LoopGDK())
{
if (dbEscapeKey() == 1)
{
break();
}
dbSync();
}
return;
}