You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- moving interfaces to engine from plugins - get rewind debugger debug view interface out of GameplayInsights plugin - change view system to use modular features instead of having it's own registration management #review jurre.debaare [CL 16986089 by Keith Yerex in ue5-main branch]
17 lines
310 B
C#
17 lines
310 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",
|
|
"SlateCore",
|
|
}
|
|
);
|
|
}
|
|
}
|