Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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",
}
);
}
}
}