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