Files
UnrealEngineUWP/Engine/Plugins/Runtime/SmartObjects/Source/SmartObjectsEditorModule/SmartObjectsEditorModule.Build.cs
yoan stamant 73e3be5b16 Added unsafe type cast as warnings in AI related plugins/modules: StateTree, Mass, SmartObject. NavigationSystem, and ZoneGraph (partial)
#rb Mieszko.Zielinski, mikko.mononen

[CL 32398227 by yoan stamant in ue5-main branch]
2024-03-21 09:44:11 -04:00

52 lines
973 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class SmartObjectsEditorModule : ModuleRules
{
public SmartObjectsEditorModule(ReadOnlyTargetRules Target) : base(Target)
{
UnsafeTypeCastWarningLevel = WarningLevel.Warning;
PublicIncludePaths.AddRange(
new string[] {
}
);
PublicDependencyModuleNames.AddRange(
new string[] {
"AdvancedPreviewScene",
"Core",
"CoreUObject",
"Engine",
"GameplayTags",
"SmartObjectsModule",
"SourceControl",
"StructUtils",
"UnrealEd",
"WorldConditions",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"ApplicationCore",
"AssetDefinition",
"BlueprintGraph",
"ComponentVisualizers",
"InputCore",
"PropertyAccessEditor",
"PropertyBindingUtils",
"PropertyEditor",
"RenderCore",
"Slate",
"SlateCore",
"StructUtilsEditor",
"ToolWidgets",
}
);
}
}
}