From 1e7b4973a6115cf97b8f5ef1db2f0634692c538a Mon Sep 17 00:00:00 2001 From: Mamadou Babaei Date: Thu, 27 Jun 2024 12:15:58 +0200 Subject: [PATCH] fix runuat build issues for ue 5.4 caused by missing headers --- .../Private/SenseGlove/GameFramework/SGGameUserSettings.cpp | 2 ++ Source/SenseGlove/Private/SenseGloveModule.cpp | 2 ++ Source/SenseGlove/Private/SenseGloveModule.h | 1 + 3 files changed, 5 insertions(+) diff --git a/Source/SenseGlove/Private/SenseGlove/GameFramework/SGGameUserSettings.cpp b/Source/SenseGlove/Private/SenseGlove/GameFramework/SGGameUserSettings.cpp index a0b6f2b0..b7b928d7 100644 --- a/Source/SenseGlove/Private/SenseGlove/GameFramework/SGGameUserSettings.cpp +++ b/Source/SenseGlove/Private/SenseGlove/GameFramework/SGGameUserSettings.cpp @@ -35,6 +35,8 @@ #include "SenseGlove/GameFramework/SGGameUserSettings.h" +#include "Engine/Engine.h" +#include "HAL/IConsoleManager.h" #include "Misc/ConfigCacheIni.h" #include "Runtime/Launch/Resources/Version.h" #include "Scalability.h" diff --git a/Source/SenseGlove/Private/SenseGloveModule.cpp b/Source/SenseGlove/Private/SenseGloveModule.cpp index 6a9b3cb3..d4de9669 100644 --- a/Source/SenseGlove/Private/SenseGloveModule.cpp +++ b/Source/SenseGlove/Private/SenseGloveModule.cpp @@ -35,7 +35,9 @@ #include "SenseGloveModule.h" +#include "Engine/Engine.h" #include "GameMapsSettings.h" +#include "Misc/CoreDelegates.h" #include "SGLog/SGLog.h" #include "SenseGlove/Engine/SGGameInstance.h" diff --git a/Source/SenseGlove/Private/SenseGloveModule.h b/Source/SenseGlove/Private/SenseGloveModule.h index 806891ca..186b0a80 100644 --- a/Source/SenseGlove/Private/SenseGloveModule.h +++ b/Source/SenseGlove/Private/SenseGloveModule.h @@ -37,6 +37,7 @@ #pragma once +#include "Delegates/IDelegateInstance.h" #include "Modules/ModuleInterface.h" class FSenseGloveModule : public IModuleInterface