Files
UnrealEngine/Engine/Plugins/Experimental/InteractionInterface/Source/InteractableInterface/InteractableInterface.build.cs
2025-05-18 13:04:45 +08: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"
}
);
}
}
}