Created
August 7, 2020 20:13
-
-
Save mklabs/b0e732dadcfefe56ee46d716eaea4bb7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright Epic Games, Inc. All Rights Reserved. | |
using UnrealBuildTool; | |
public class ARPG : ModuleRules | |
{ | |
public ARPG(ReadOnlyTargetRules Target) : base(Target) | |
{ | |
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs; | |
PublicDependencyModuleNames.AddRange(new string[] { | |
"Core", | |
"CoreUObject", | |
"Engine", | |
"InputCore", | |
"HeadMountedDisplay" | |
}); | |
PrivateDependencyModuleNames.AddRange(new string[] { | |
"AdvancedSessions", | |
"ARPGLoadingScreen", | |
"ALSV4_CPP", | |
"Slate", | |
"SlateCore", | |
"MoviePlayer", | |
"GameplayAbilities", | |
"GameplayTags", | |
"GameplayTasks" | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment