yeah, the problem is in line 2, i got it i just cant figure out what it wants in the friggin parameter list! The enum it asks for is apparently undefined, the colour isnt the right format, all kinds of stuff
You're also using wrong enum names (enums are not defined as part of the enum, but the surrounding block, i.e. namespace or class) and you're using an explicit constructor reference instead of the class name for the SColor (i.e. one SColor to much). You really have to start a few steps earlier in C++ instead of directly jumping into all the features at once. Maybe read a good book and do some tutorials on basic C++ things first, then start over with 3d programming.