Add to Cpp Docs

Hello!

Having knowledge in C++ writing console apps, reading two cpp books and following online tutorials I’m now learning UE4 programming with C++.

Currently I’m following the unreal engine 4 docs.

Link:

I’m at the “C++ Programming Guide” section and following the “Introduction to C++ Programming in UE4” tutorial. Under the “Setting defaults in my constructor” topic where we’re using the PostInitProperties() method you should probably add that we have to override PostInitProperties() in our header file like this:

virtual void PostInitProperties() override;

Without overriding it I got the following error on engine version 4.7.1:

“Inherited Member is not allowed”

I think it’ll help people who are new to programming with UE4. Sorry if I’m posting in the wrong section.