Files
NERGUS/Source/NERGUS/NERGUS.Build.cs
T
2026-08-03 00:28:44 +03:00

45 lines
1.1 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class NERGUS : ModuleRules
{
public NERGUS(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(new string[] {
"Core",
"CoreUObject",
"Engine",
"InputCore",
"EnhancedInput",
"AIModule",
"StateTreeModule",
"GameplayStateTreeModule",
"UMG",
"Slate"
});
PrivateDependencyModuleNames.AddRange(new string[] { });
PublicIncludePaths.AddRange(new string[] {
"NERGUS",
"NERGUS/Variant_Horror",
"NERGUS/Variant_Horror/UI",
"NERGUS/Variant_Shooter",
"NERGUS/Variant_Shooter/AI",
"NERGUS/Variant_Shooter/UI",
"NERGUS/Variant_Shooter/Weapons"
});
// Uncomment if you are using Slate UI
// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
// Uncomment if you are using online features
// PrivateDependencyModuleNames.Add("OnlineSubsystem");
// To include OnlineSubsystemSteam, add it to the plugins section in your uproject file with the Enabled attribute set to true
}
}