Files
UnrealEngine/Engine/Plugins/Runtime/AndroidFileServer/Source/AndroidFileServerEditor/AndroidFileServerEditor.Build.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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",
});
}
}
}