Files
yoan stamant 03daf73b7b [SmartObject] Removed dependency on MassEntity to store slots
#rb mikko.mononen

[CL 26431965 by yoan stamant in 5.3 branch]
2023-07-18 09:00:26 -04:00

40 lines
690 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class SmartObjectsModule : ModuleRules
{
public SmartObjectsModule(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePaths.AddRange(
new string[] {
}
);
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"DeveloperSettings",
"Engine",
"AIModule",
"GameplayTags",
"GameplayAbilities",
"RHI",
"StructUtils",
"WorldConditions",
"NavigationSystem"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"RenderCore"
}
);
SetupGameplayDebuggerSupport(Target);
}
}
}