Created
July 22, 2018 03:12
-
-
Save Tim-Machine/6759c0adbf2844d705aa9605070f61ec 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
using UnrealBuildTool; | |
public class Exordium : ModuleRules | |
{ | |
public Exordium(ReadOnlyTargetRules Target) : base(Target) | |
{ | |
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs; | |
PublicDependencyModuleNames.AddRange(new string[] { | |
"GameplayAbilities", | |
"GameplayTags", | |
"GameplayTasks", | |
"Core", | |
"CoreUObject", | |
"Engine", | |
"InputCore", | |
"HeadMountedDisplay" | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment