Skip to content

Instantly share code, notes, and snippets.

@JElbourne
Created June 28, 2021 23:30
Show Gist options
  • Save JElbourne/ae82d7d7cea33b6364c6bb171b1cf571 to your computer and use it in GitHub Desktop.
Save JElbourne/ae82d7d7cea33b6364c6bb171b1cf571 to your computer and use it in GitHub Desktop.
MultiplayerTest.Build.cs - For Video: https://youtu.be/jc0COamYRm4
using UnrealBuildTool;
public class MultiplayerTest : ModuleRules
{
public MultiplayerTest(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "HeadMountedDisplay" });
PrivateDependencyModuleNames.AddRange(new string[] { "OnlineSubsystem", "OnlineSubsystemNull", "OnlineSubsystemSteam"});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment