Files
@ b0423dd01d8a
Branch filter:
Location: menu.hg/Source/CardinalMenu/CardinalMenu.Build.cs - annotation
b0423dd01d8a
1.2 KiB
text/x-csharp
default music value fix, playing wrong track for first two seconds until clients get in sync with server
67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 da2390039566 da2390039566 67f2a87a3323 da2390039566 da2390039566 da2390039566 da2390039566 67f2a87a3323 da2390039566 da2390039566 da2390039566 da2390039566 da2390039566 da2390039566 da2390039566 da2390039566 da2390039566 da2390039566 67f2a87a3323 | // Fill out your copyright notice in the Description page of Project Settings.
using UnrealBuildTool;
public class CardinalMenu : ModuleRules
{
public CardinalMenu(TargetInfo Target)
{
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "MainMenuLib", "AdvancedSessions", "OnlineSubsystem", "OnlineSubsystemUtils", "Networking", "Sockets", "OnlineSubsystemSteam", "OnlineSubsystemNull" });
PrivateDependencyModuleNames.AddRange(new string[] { "OnlineSubsystem", "Sockets", "Networking", "OnlineSubsystemSteam", "OnlineSubsystemNull" });
// Uncomment if you are using Slate UI
// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
// Uncomment if you are using online features
//PrivateDependencyModuleNames.Add("OnlineSubsystem");
//if ((Target.Platform == UnrealTargetPlatform.Win32) || (Target.Platform == UnrealTargetPlatform.Win64))
//{
// if (UEBuildConfiguration.bCompileSteamOSS == true)
// {
// DynamicallyLoadedModuleNames.Add("OnlineSubsystemSteam");
// }
// }
}
}
|