17 lines
365 B
C
17 lines
365 B
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "VisualGraphUtils.h"
|
|
#include "Rigs/RigHierarchy.h"
|
|
|
|
#define UE_API CONTROLRIGDEVELOPER_API
|
|
|
|
struct FControlRigVisualGraphUtils
|
|
{
|
|
static UE_API FString DumpRigHierarchyToDotGraph(URigHierarchy* InHierarchy, const FName& InEventName = NAME_None);
|
|
};
|
|
|
|
#undef UE_API
|