In this video Sam utilizes IWYU and adds:
#include "PhysicsEngine/PhysicsConstraintComponent.h"
He places this include in SprungWheel.cpp. I’m just curious why we didn’t place this in SprungWheel.h because it is from my understanding so far that we put all of the includes in the header file and then just have a single include of the SprungWheel.h in the .cpp.
I know it’s not a huge deal, but to reinforce my understanding of what I thought I had picked up in previous lectures, which route is more correct here?