17 lines
251 B
C
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;
|
|
};
|