// 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" } ); } } }