You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira none #lockdown nick.penwarden #rb martin.wilson #fyi martin.wilson [CL 4398312 by David Hibbitts in Main branch]
17 lines
365 B
C#
17 lines
365 B
C#
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class LiveLinkInterface : ModuleRules
|
|
{
|
|
public LiveLinkInterface(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject"
|
|
}
|
|
);
|
|
}
|
|
}
|