You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-200714 #rb aditya.ravichandran, Devin.Doucette [CL 29935368 by DecoyRS in ue5-main branch]
25 lines
414 B
C#
25 lines
414 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class SourceCodeAccess : ModuleRules
|
|
{
|
|
public SourceCodeAccess(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"Settings",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"CoreUObject",
|
|
"Slate",
|
|
"SlateCore",
|
|
}
|
|
);
|
|
}
|
|
}
|