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