Hello, I've checked it,
You need to download this part too -
http://www.esenthel.com/download/Private...ta/Misc.7z
because "Main.h" from the source codes refers to
"#include "../data/enum/_enums.h"
that file is in the link above.
Inside it contains all enums used by the game which were generated by the World Editor.
As for the Color errors
'EE::Color &EE::Color::operator =(const EE::Color &)'
while trying to match the argument list '(EE::Color, int)'
in one of latest engine changes
colors can no longer be assigned from Int's
so if the code has something like this:
Color col=0xFFFFFF..
please change it into this:
Color col=Color(255,255,255,255);
I'll make the changes by myself while I will be releasing the next engine version in next few days.