Files
UnrealEngine/Engine/Plugins/Runtime/GameplayInteractions/Source/GameplayInteractionsModule/GameplayInteractionsModule.Build.cs
2025-05-18 13:04:45 +08:00

30 lines
612 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class GameplayInteractionsModule : ModuleRules
{
public GameplayInteractionsModule(ReadOnlyTargetRules Target) : base(Target)
{
ShortName = "GameplayInteractions";
PublicDependencyModuleNames.AddRange(
new string[] {
"AIModule",
"ContextualAnimation",
"Core",
"CoreUObject",
"Engine",
"GameplayStateTreeModule",
"GameplayTags",
"GameplayTasks",
"NavCorridor",
"NavigationSystem",
"SmartObjectsModule",
"StateTreeModule",
}
);
}
}
}