Files
UnrealEngineUWP/Engine/Source/Runtime/StorageServerClient/StorageServerClient.Build.cs
Zousar Shaker cf116088ae Integrating //UE5/Dev-Cooker @ 16678003 to //UE5/Main (Zousar.Shaker-YEG-0943-Quaternary)
Non-DevIteration_ShooterGame

[CL 16678907 by Zousar Shaker in ue5-main branch]
2021-06-15 16:36:57 -04:00

18 lines
375 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",
"Sockets",
"CookOnTheFly"
}
);
}
}