Yes, the tutorials start with "Hello World" but this is mainly to get you familiar with the coding style and to make sure you can compile.
Here is printing hello world:
#include "DarkGDK.h"
void DarkGDK ( void )
{
dbSyncOn ( );
dbSyncRate ( 60 );
while ( LoopGDK ( ) )
{
dbText( 0, 0, "Hello world!" );
dbSync ( );
}
return;
}
and here is a basic 3d object loading:
#include "DarkGDK.h"
void DarkGDK ( void )
{
dbSyncOn ( );
dbSyncRate ( 60 );
dbMakeObjectCube( 1, 1 );
while ( LoopGDK ( ) )
{
dbSync ( );
}
return;
}
These are as simple as it gets. If you are having difficulty with the basic tutorials shipped with DarkGDK, then I would suggest you learn C++ first.
Tux is my guildmaster.