General Blueprint utilities Functions + First Implementation of Pursuit Logic
This commit is contained in:
28
Source/DTFluxPursuitSystem/DTFluxPursuitSystem.Build.cs
Normal file
28
Source/DTFluxPursuitSystem/DTFluxPursuitSystem.Build.cs
Normal file
@ -0,0 +1,28 @@
|
||||
using UnrealBuildTool;
|
||||
|
||||
public class DTFluxPursuitSystem : ModuleRules
|
||||
{
|
||||
public DTFluxPursuitSystem(ReadOnlyTargetRules Target) : base(Target)
|
||||
{
|
||||
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
||||
|
||||
PublicDependencyModuleNames.AddRange(
|
||||
new string[]
|
||||
{
|
||||
"Core",
|
||||
}
|
||||
);
|
||||
|
||||
PrivateDependencyModuleNames.AddRange(
|
||||
new string[]
|
||||
{
|
||||
"CoreUObject",
|
||||
"Engine",
|
||||
"Slate",
|
||||
"SlateCore",
|
||||
"DTFluxCore",
|
||||
"DTFluxCoreSubsystem"
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user