This commit is contained in:
Niklas
2024-03-03 23:44:39 +01:00
parent cc122e5dea
commit 6a689f41fe
19244 changed files with 508496 additions and 12245 deletions
@@ -0,0 +1,25 @@
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",
});
}
}