This will be a small post since I only received on error message:
...\C++\RunningMan\CPlayer.cpp|208|error: 'class CCamera' has no member named 'SetPosition'|
||=== Build finished: 1 errors, 4 warnings (0 minutes, 0 seconds) ===|
I have a static object of the CCamera-class declared in CCamera-class ^^
This is a bit confusing because the error message says CCamera does not have a function named SetPosition which must mean you are trying to call SetPosition on a CCamera object somewhere in your code. You also mention a function SetCamera which is another function that CCamera does not have.