15 lines
400 B
C#
15 lines
400 B
C#
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
||
|
using UnrealBuildTool;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
public class the_twilight_abyssEditorTarget : TargetRules
|
||
|
{
|
||
|
public the_twilight_abyssEditorTarget( TargetInfo Target) : base(Target)
|
||
|
{
|
||
|
Type = TargetType.Editor;
|
||
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
||
|
ExtraModuleNames.AddRange( new string[] { "the_twilight_abyss" } );
|
||
|
}
|
||
|
}
|