Files
UnrealEngine/Engine/Plugins/Experimental/InteractionInterface/Source/InteractableInterface/InteractableInterface.build.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

21 lines
413 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class InteractableInterface : ModuleRules
{
public InteractableInterface(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"GameplayTags",
"GameplayAbilities",
"GameplayTasks"
}
);
}
}
}