// Copyright Epic Games, Inc. All Rights Reserved. #pragma once #include "Containers/Array.h" #include "VisualGraph.h" class UClass; class UObject; class VISUALGRAPHUTILS_API FVisualGraphObjectUtils { public: static FVisualGraph TraverseUObjectReferences( const TArray& InObjects, const TArray& InClassesToSkip = TArray(), const TArray& InOutersToSkip = TArray(), const TArray& InOutersToUse = TArray(), bool bTraverseObjectsInOuter = true, bool bCollectReferencesBySerialize = true, bool bRecursive = true ); static FVisualGraph TraverseTickOrder( const TArray& InObjects ); };