mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 12:03:27 +00:00
26 lines
756 B
C#
26 lines
756 B
C#
using UnrealBuildTool;
|
|
|
|
public class SmartObjectsModule : ModuleRules {
|
|
public SmartObjectsModule(ReadOnlyTargetRules Target) : base(Target) {
|
|
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
|
|
bLegacyPublicIncludePaths = false;
|
|
ShadowVariableWarningLevel = WarningLevel.Warning;
|
|
|
|
PublicDependencyModuleNames.AddRange(new string[] {
|
|
"AIModule",
|
|
"Chaos",
|
|
"Core",
|
|
"CoreUObject",
|
|
"DeveloperSettings",
|
|
"Engine",
|
|
"GameplayAbilities",
|
|
"GameplayBehaviorsModule",
|
|
"GameplayTags",
|
|
"GameplayTasks",
|
|
"MovieScene",
|
|
"NavigationSystem",
|
|
"PhysicsCore",
|
|
});
|
|
}
|
|
}
|