The Trengine tutorials
To test if you compiler is working
#include <stdio.h>
int main(int argc, char **argv) {
printf("Hello World");
}
Windows/MingW:
**type this into the terminal**
gcc -Wall -m64 nameoffile.c -o test.exe
test.exe
To open a blank Opengl Window
#include "../../header/trengine.h"
#include "../../header/trengineloadlib.h"
#include "../../header/tropengl.h"
Note the path to the header files may varie so make sure what you insert in the include
statement is a valid path to the header files listed above
#include "../../header/trengine.h"
This header file is responsible for containing the main core functions and structs of the TrEngine
like the registering event, type and state system. Their functionality inside of the engine shall
be clarified in next section of the tutorial.
#include "../../header/trengineloadlib.h"
This one is responsible for loading the dynamic link libaries .dll or .so files. This is especially needed
in windows.