From d4c2068bff2b507f31614b392707bb8fb2e371d2 Mon Sep 17 00:00:00 2001 From: hxhb Date: Wed, 26 Jan 2022 08:17:07 +0000 Subject: [PATCH] release v75.0 --- .../HotPatcherEditor.Build.cs | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/HotPatcher/Source/HotPatcherEditor/HotPatcherEditor.Build.cs b/HotPatcher/Source/HotPatcherEditor/HotPatcherEditor.Build.cs index c0991c07..94ff4767 100644 --- a/HotPatcher/Source/HotPatcherEditor/HotPatcherEditor.Build.cs +++ b/HotPatcher/Source/HotPatcherEditor/HotPatcherEditor.Build.cs @@ -17,19 +17,8 @@ public HotPatcherEditor(ReadOnlyTargetRules Target) : base(Target) bUseRTTI = true; } - PublicIncludePaths.AddRange( - new string[] { - // ... add public include paths required here ... - } - ); - - - PrivateIncludePaths.AddRange( - new string[] { - // ... add other private include paths required here ... - } - ); - + PublicIncludePaths.AddRange(new string[] { }); + PrivateIncludePaths.AddRange(new string[] {}); PublicDependencyModuleNames.AddRange( new string[] @@ -85,10 +74,6 @@ public HotPatcherEditor(ReadOnlyTargetRules Target) : base(Target) }); } - if (Target.Version.MajorVersion > 4 || Target.Version.MinorVersion > 23) - { - - } System.Func AddPublicDefinitions = (string MacroName,bool bEnable) => { PublicDefinitions.Add(string.Format("{0}={1}",MacroName, bEnable ? 1 : 0));