16 lines
380 B
C#
16 lines
380 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class tankTarget : TargetRules
|
|
{
|
|
public tankTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
DefaultBuildSettings = BuildSettingsVersion.V5;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_4;
|
|
ExtraModuleNames.Add("tank");
|
|
}
|
|
}
|