F my life 2008 sucks.. Im so lost with all this $h!t
[edit] i just got VB not VB c++ express im gonna try that ...
[edit] Yep it works, what a headache that was, hopefully my instructor lets me use 2008 c++ express for class lol. now to get Sparky's collision GDK onward!
[EDIT] NOTHING IS DISPLAYING!!!! AHHHHHH!!!
[edit]
Noting 3d is diplaying anyways
FIXED
// Dark GDK - The Game Creators - www.thegamecreators.com
// the wizard has created a very simple project that uses Dark GDK
// it contains the basic code for a GDK application
// 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 )
{
// turn on sync rate and set maximum rate to 60 fps
dbSyncOn ( );
dbSyncRate ( 30 );
dbMakeObjectBox(1,10,10,10);
int tt=13; // temp value
// our main loop
while ( LoopGDK ( ) )
{
dbPositionCamera(13,13,13); dbPointCamera(dbObjectPositionX(1),dbObjectPositionY(1),dbObjectPositionZ(1));
// update the screen
dbSync ( );
}
// return back to windows
return;