This just a note to anyone who plans to move outside Visual Studio someday into more standard C++ (especially cross-platform). It turns out that Visual Studio allows certain syntax as language extensions, which is not standard and won’t work with other compilers. One of these is the enum qualifier.
The video passes the ECC_PhysicsBody to the object query params as ECollisionChannel::ECC_PhysicsBody, using the enum type as a qualifier. This will not compile if using a standard-compliant compiler. (A common way to qualify enum values is to put the enum in a class or namespace.) It happens to work in Visual Studio, thanks to Microsoft.
It won’t matter much for this course, but I wanted to mention it just in case, so that certain bad habits don’t develop that can lead to grief down the road.