mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 19:27:02 +00:00
14 lines
376 B
C#
14 lines
376 B
C#
using UnrealBuildTool;
|
|
|
|
public class AnalyticsBlueprintLibrary : ModuleRules {
|
|
public AnalyticsBlueprintLibrary(ReadOnlyTargetRules Target) : base(Target) {
|
|
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
|
|
|
|
PublicDependencyModuleNames.AddRange(new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
});
|
|
}
|
|
}
|