Files
UnrealEngine/Samples/Games/Lyra/Source/LyraClient.Target.cs
2025-05-18 13:04:45 +08:00

17 lines
365 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class LyraClientTarget : TargetRules
{
public LyraClientTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Client;
ExtraModuleNames.AddRange(new string[] { "LyraGame" });
LyraGameTarget.ApplySharedLyraTargetSettings(this);
}
}