Files
UnrealEngine/Engine/Source/Runtime/AnimationCore/Public/NodeChain.h
2025-05-18 13:04:45 +08:00

17 lines
251 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "NodeChain.generated.h"
/** A chain of nodes in a hierarchy */
USTRUCT()
struct FNodeChain
{
GENERATED_BODY()
UPROPERTY()
TArray<FName> Nodes;
};