Files
UnrealEngineUWP/Engine/Source/Editor/AnimGraph/Classes/AnimGraphNode_StateMachine.h

20 lines
617 B
C
Raw Normal View History

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "AnimGraphNode_StateMachineBase.h"
#include "AnimGraphNode_StateMachine.generated.h"
UCLASS(MinimalAPI)
class UAnimGraphNode_StateMachine : public UAnimGraphNode_StateMachineBase
{
GENERATED_UCLASS_BODY()
// Runtime state machine representation (empty; populated during compilation)
UPROPERTY(EditAnywhere, Category=Settings)
FAnimNode_StateMachine Node;
// UAnimGraphNode_StateMachineBase interface
virtual FAnimNode_StateMachine& GetNode() override { return Node; }
// End of UAnimGraphNode_StateMachineBase interface
};