It has been difficult for me to include RawInputWindows.h into WindowsApplication.cpp. The file isn’t recognized by compiler for some reason.
I recon I might need to add a module dependency to ApplicationCore module for the inclusion to succeed. But I don’t know which module to add, is it RawInput simply? And I don’t know the exact format of adding this dependency.
I added this, and didnt work:
PublicDependencyModuleNames.AddRange(
new string[] {
“RawInput”
}
);
(I didn’t clear the previous build fully before re-building).
Any idea?