I’m having a small issue with an “#include PawnBase.h”. Unreal keeps giving me error messages about it, that it’s missing and I’m not sure where? Have I put one in the wrong place or missed an area where there should be one? I hope that makes sense.
Well that would be why “File.h” just looks in the current folder. The Source folder is within the include path so you can do either
#include ToonTanks/SomeFolder/PawnBase.h"
Or use the relative path from the current file. i.e. if PawnBase.h is within ToonTanks/Base and PawnTurret.h is within ToonTanks/Derived. Then this would work