mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-28 19:27:53 +00:00
15 lines
383 B
C#
15 lines
383 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class FortniteEditorTarget : TargetRules
|
|
{
|
|
public FortniteEditorTarget ( TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Editor;
|
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
|
ExtraModuleNames.AddRange( new string[] { "FortniteEditor" } );
|
|
}
|
|
}
|