15 lines
430 B
C#
15 lines
430 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class DungeonCrawlerUEEditorTarget : TargetRules
|
|
{
|
|
public DungeonCrawlerUEEditorTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Editor;
|
|
DefaultBuildSettings = BuildSettingsVersion.V6;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_7;
|
|
ExtraModuleNames.Add("DungeonCrawlerUE");
|
|
}
|
|
}
|