This commit is contained in:
2023-06-12 22:46:06 +02:00
commit 25559b81e3
784 changed files with 2284 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class FireworkDuelsEditorTarget : TargetRules
{
public FireworkDuelsEditorTarget( TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V2;
ExtraModuleNames.AddRange( new string[] { "FireworkDuels" } );
}
}