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