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

17 lines
355 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class LiveLinkInterface : ModuleRules
{
public LiveLinkInterface(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject"
}
);
}
}