mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
15 lines
385 B
C#
15 lines
385 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" } );
|
|
}
|
|
}
|