Files
UnrealEngineUWP/Engine/Source/Editor/AnimationBlueprintEditor/Private/AnimationNodes/SGraphNodeAnimationResult.h
bryan sefcik 0837230669 Ran IWYU again on half of the Engine/Source/Editor/... source files.
#jira

[CL 21716414 by bryan sefcik in ue5-main branch]
2022-08-30 23:03:03 -04:00

24 lines
564 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "AnimationNodes/SAnimationGraphNode.h"
#include "Templates/SharedPointer.h"
#include "Widgets/DeclarativeSyntaxSupport.h"
class SWidget;
class SGraphNodeAnimationResult : public SAnimationGraphNode
{
public:
SLATE_BEGIN_ARGS(SGraphNodeAnimationResult){}
SLATE_END_ARGS()
void Construct(const FArguments& InArgs, class UAnimGraphNode_Base* InNode);
protected:
// SGraphNode interface
virtual TSharedRef<SWidget> CreateNodeContentArea() override;
// End of SGraphNode interface
};