22 lines
571 B
C#
22 lines
571 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class EndlessVendettaTarget : TargetRules
|
|
{
|
|
public EndlessVendettaTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_1;
|
|
ExtraModuleNames.Add("EndlessVendetta");
|
|
RegisterModulesCreatedByRider();
|
|
}
|
|
|
|
private void RegisterModulesCreatedByRider()
|
|
{
|
|
ExtraModuleNames.AddRange(new string[] { "DialogueSystemEditor" });
|
|
}
|
|
}
|