mirror of
https://github.com/johndoe6345789/ArenaFPS.git
synced 2026-05-06 11:29:39 +00:00
d0d33b37e2
initial commit
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;
|
|
}
|
|
}
|