Files
FNGameProj/Source/FortniteGame.Target.cs
T
Zylox e310c4393a Update
Rewrite folder structure
Add custom asset type from https://github.com/SizzyFNBR/FortniteEditor
2022-09-04 22:48:08 +02:00

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" } );
}
}