15 lines
241 B
C#
15 lines
241 B
C#
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class TNGTarget : TargetRules
|
|
{
|
|
public TNGTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
|
|
ExtraModuleNames.AddRange( new string[] { "TNG" } );
|
|
}
|
|
}
|