mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 03:53:25 +00:00
15 lines
360 B
C#
15 lines
360 B
C#
using UnrealBuildTool;
|
|
|
|
public class LauncherSocialDefaults : ModuleRules {
|
|
public LauncherSocialDefaults(ReadOnlyTargetRules Target) : base(Target) {
|
|
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
|
|
|
|
PublicDependencyModuleNames.AddRange(new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"LauncherSocialTypes",
|
|
"SlateCore",
|
|
});
|
|
}
|
|
} |