mirror of
https://github.com/johndoe6345789/ArenaFPS.git
synced 2026-04-25 14:15:14 +00:00
17 lines
365 B
C#
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);
|
|
}
|
|
}
|