Files
UnrealEngine/Engine/Plugins/Runtime/AndroidFileServer/Source/AndroidFileServerEditor/AndroidFileServerEditor.Build.cs
2025-05-18 13:04:45 +08:00

18 lines
349 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class AndroidFileServerEditor : ModuleRules
{
public AndroidFileServerEditor(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"UnrealEd",
});
}
}
}