You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-142041 #rb marc.audy #preflight 62044d39a65a8a28462ff528 #lockdown julien.marchand #ROBOMERGE-AUTHOR: michael.noland #ROBOMERGE-SOURCE: CL 18935369 in //UE5/Release-5.0/... via CL 18935468 via CL 18935638 #ROBOMERGE-BOT: UE5 (Release-Engine-Test -> Main) (v917-18934589) [CL 18935681 by michael noland in ue5-main branch]
19 lines
345 B
C#
19 lines
345 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class CollectionManager : ModuleRules
|
|
{
|
|
public CollectionManager(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"DirectoryWatcher",
|
|
"SourceControl"
|
|
}
|
|
);
|
|
}
|
|
}
|