You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 6296fc872a1851b4ccae7e39 #rb pj.kack [CL 20447121 by CarlMagnus Nordin in ue5-main branch]
19 lines
406 B
C#
19 lines
406 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class StorageServerClient : ModuleRules
|
|
{
|
|
public StorageServerClient(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Sockets",
|
|
"CookOnTheFly"
|
|
}
|
|
);
|
|
}
|
|
}
|