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
383 B
C#
15 lines
383 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class FortniteGameTarget : TargetRules
|
|
{
|
|
public FortniteGameTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
|
ExtraModuleNames.AddRange( new string[] { "FortniteGame, FortniteEditor" } );
|
|
}
|
|
}
|