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

25 lines
565 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
// SteamEOS refers to a game published and launched on Steam while still taking advantage of EOS for online and crossplay (integrated platform).
public class LyraGameSteamEOSTarget : LyraGameTarget
{
public LyraGameSteamEOSTarget(TargetInfo Target) : base(Target)
{
CustomConfig = "SteamEOS";
EnablePlugins.AddRange(
new string[]
{
"OnlineServicesEOS",
"OnlineSubsystemEOS"
}
);
OptionalPlugins.Add("EOSReservedHooks");
}
}