2026-02-24 22:39:26 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
public class FPSTemplateTarget : TargetRules
|
|
|
|
|
{
|
|
|
|
|
public FPSTemplateTarget(TargetInfo Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
Type = TargetType.Game;
|
|
|
|
|
DefaultBuildSettings = BuildSettingsVersion.V6;
|
|
|
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_7;
|
|
|
|
|
ExtraModuleNames.Add("FPSTemplate");
|
2026-03-23 08:34:51 -04:00
|
|
|
ExtraModuleNames.Add("DedicatedServers");
|
2026-02-24 22:39:26 -05:00
|
|
|
}
|
|
|
|
|
}
|