@Snuffy
Hi,
In the AmiDARK Engine archives is a folder called SDK.
Copy its content into your SDK: folder.
(it should copy the lib and the .h definition file)
1st : Check the projects available in the archive. They will show you the lib needed ( -lAmiDARK -lgl .... ) to compile a project using the AmiDARK Engine.
It will also show you how your makefile should be builded to compile your project.
2nd : Check the project .c file. You'll see that it includes a file "libAmiDARK.h". This file contain the definition of all functions currently available in the AmiDARK Engine alpha 0.4c
You must include this file, otherwise, the commands will not be defined.
3rd : You must put everything (excepted global variables) inside a function called :
void DarkLoop( void ){
}
the main() is already defined by the engine (as is used as startup/quit) so you can't use main(). Use DarkLoop() instead. Like in the projects.
4th : Look in the HELP folder of the AmiDARK Engine archive. All this procedure is explained and, the commands available are also explained in separate HELP file.
I hope this will help you.
Don't hesitate to post questions or comments on the AmiDARK Engine forums :
http://forum.amidark-engine.comKindest Regards,
AmiDARK
http://www.amidark-engine.com