Files
ArenaFPS/Source/LyraServerEOS.Target.cs
2025-11-17 21:49:11 +00:00

23 lines
410 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class LyraServerEOSTarget : LyraServerTarget
{
public LyraServerEOSTarget(TargetInfo Target) : base(Target)
{
CustomConfig = "EOS";
EnablePlugins.AddRange(
new string[]
{
"OnlineServicesEOS",
"OnlineSubsystemEOS"
}
);
OptionalPlugins.Add("EOSReservedHooks");
}
}