tank/Source/tank.Target.cs

16 lines
380 B
C#
Raw Normal View History

2024-06-03 01:55:23 +02:00
// 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");
}
}