Files
UnrealEngine/Engine/Plugins/Media/AndroidCamera/Source/AndroidCameraEditor/AndroidCameraEditor.Build.cs
2025-05-18 13:04:45 +08:00

20 lines
385 B
C#

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