You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
38 lines
640 B
C#
38 lines
640 B
C#
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
namespace UnrealBuildTool.Rules
|
||
|
|
{
|
||
|
|
public class StateTreeModule : ModuleRules
|
||
|
|
{
|
||
|
|
public StateTreeModule(ReadOnlyTargetRules Target) : base(Target)
|
||
|
|
{
|
||
|
|
PublicIncludePaths.AddRange(
|
||
|
|
new string[] {
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
PublicDependencyModuleNames.AddRange(
|
||
|
|
new string[] {
|
||
|
|
"Core",
|
||
|
|
"CoreUObject",
|
||
|
|
"Engine",
|
||
|
|
"AIModule",
|
||
|
|
"GameplayBehaviorsModule",
|
||
|
|
"GameplayTasks",
|
||
|
|
"GameplayTags",
|
||
|
|
"GameplayAbilities",
|
||
|
|
"SmartObjectsModule",
|
||
|
|
"StructUtils",
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
PrivateDependencyModuleNames.AddRange(
|
||
|
|
new string[] {
|
||
|
|
"RenderCore",
|
||
|
|
}
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|