UE4 C++: Range Based For Loops excerpt

The following content below has been taken from https://www.unrealengine.com/en-US/blog/ranged-based-for-loops?sessionInvalidated=true …Here is an example of how this can really clean up common game code. Previously if I wanted to iterate over an array of...

UE4 Interfaces

Here’s how you can make interfaces. In you C++ Classes folder, right click and create a new C++ class deriving from the Unreal Interface parent class. As of Ue4 4.22 it is on the bottom of the list. In the public section of the interface header, you’ll put...