Files
UnrealEngine/Samples/Games/Lyra/Source/LyraServerSteamEOS.Target.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

23 lines
425 B
C#

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