2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
2014-04-24 08:49:31 -04:00
|
|
|
#include "AnimGraphNode_StateMachineBase.h"
|
2014-03-14 14:13:41 -04:00
|
|
|
#include "AnimGraphNode_StateMachine.generated.h"
|
|
|
|
|
|
|
|
|
|
UCLASS(MinimalAPI)
|
|
|
|
|
class UAnimGraphNode_StateMachine : public UAnimGraphNode_StateMachineBase
|
|
|
|
|
{
|
2015-03-17 05:38:32 -04:00
|
|
|
GENERATED_UCLASS_BODY()
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
// Runtime state machine representation (empty; populated during compilation)
|
|
|
|
|
UPROPERTY(EditAnywhere, Category=Settings)
|
|
|
|
|
FAnimNode_StateMachine Node;
|
|
|
|
|
|
|
|
|
|
// UAnimGraphNode_StateMachineBase interface
|
2014-06-13 06:14:46 -04:00
|
|
|
virtual FAnimNode_StateMachine& GetNode() override { return Node; }
|
2014-03-14 14:13:41 -04:00
|
|
|
// End of UAnimGraphNode_StateMachineBase interface
|
|
|
|
|
};
|