I’m new to c++ coding in unreal Engine and I’m trying some very basic stuff to get started such as printing strings. But when I type GEngine intellisense doesn’t seem to recognize it. All I get in the dropdown is GEngineIni
If you want the monolithic header that includes a boatload of stuff, use “Engine.h” like @ExtraLifeMatt said. If you want to use the more streamlined IWYU header, then use “Engine/Engine.h”. They are actually two different header files. The former includes a lot of other files (slower compile times, but you don’t have to include as much yourself) while the latter uses forward declarations (faster compile times, but you must include files yourself when you need them).
The use of Engine.h is called out specifically in the IWYU link above: