You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Jurre.DeBaare #preflight 611c3480cc11eb00018d471e [CL 17208978 by Keith Yerex in ue5-main branch]
18 lines
329 B
C#
18 lines
329 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class RewindDebuggerInterface : ModuleRules
|
|
{
|
|
public RewindDebuggerInterface(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"SlateCore",
|
|
}
|
|
);
|
|
}
|
|
}
|