You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Step verified job 66390cb0242b321d4c9d98a6 #jira UE-214088 [CL 33461215 by chris constantinescu in ue5-main branch]
31 lines
653 B
C#
31 lines
653 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
[SupportedPlatforms("Win64", "Linux")]
|
|
public class NetworkPredictionTests : TestModuleRules
|
|
{
|
|
static NetworkPredictionTests()
|
|
{
|
|
if (InTestMode)
|
|
{
|
|
TestMetadata = new Metadata();
|
|
TestMetadata.TestName = "NetworkPredictionPlugin";
|
|
TestMetadata.TestShortName = "Net Prediction";
|
|
TestMetadata.SupportedPlatforms.Add(UnrealTargetPlatform.Linux);
|
|
}
|
|
}
|
|
|
|
public NetworkPredictionTests(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"NetworkPrediction",
|
|
}
|
|
);
|
|
}
|
|
}
|