mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
Rewrite folder structure Add custom asset type from https://github.com/SizzyFNBR/FortniteEditor
15 lines
400 B
C#
15 lines
400 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class FortniteGameEditorTarget : TargetRules
|
|
{
|
|
public FortniteGameEditorTarget( TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Editor;
|
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
|
ExtraModuleNames.AddRange( new string[] { "FortniteGame", "FortniteEditor" } );
|
|
}
|
|
}
|