mirror of
https://github.com/johndoe6345789/ArenaFPS.git
synced 2026-04-25 14:15:14 +00:00
20 lines
446 B
C#
20 lines
446 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
[SupportedPlatforms(UnrealPlatformClass.Server)]
|
|
public class LyraServerTarget : TargetRules
|
|
{
|
|
public LyraServerTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Server;
|
|
|
|
ExtraModuleNames.AddRange(new string[] { "LyraGame" });
|
|
|
|
LyraGameTarget.ApplySharedLyraTargetSettings(this);
|
|
|
|
bUseChecksInShipping = true;
|
|
}
|
|
}
|