12 lines
320 B
C#
12 lines
320 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class NiagaraAnimNotifies : ModuleRules
|
|
{
|
|
public NiagaraAnimNotifies(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "Niagara" });
|
|
}
|
|
}
|