2019-01-02 14:54:39 -05:00
|
|
|
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2016-11-23 15:48:37 -05:00
|
|
|
#include "CoreMinimal.h"
|
|
|
|
|
#include "UObject/ObjectMacros.h"
|
|
|
|
|
#include "EdGraph/EdGraph.h"
|
2014-03-14 14:13:41 -04:00
|
|
|
#include "AnimationGraph.generated.h"
|
|
|
|
|
|
2016-11-23 15:48:37 -05:00
|
|
|
class UEdGraphPin;
|
|
|
|
|
|
2016-09-22 15:33:34 -04:00
|
|
|
/** Delegate fired when a pin's default value is changed */
|
|
|
|
|
DECLARE_MULTICAST_DELEGATE_OneParam(FOnPinDefaultValueChanged, UEdGraphPin* /*InPinThatChanged*/)
|
|
|
|
|
|
2014-03-14 14:13:41 -04:00
|
|
|
UCLASS(MinimalAPI)
|
|
|
|
|
class UAnimationGraph : public UEdGraph
|
|
|
|
|
{
|
2015-03-17 05:38:32 -04:00
|
|
|
GENERATED_UCLASS_BODY()
|
2016-09-22 15:33:34 -04:00
|
|
|
|
|
|
|
|
/** Delegate fired when a pin's default value is changed */
|
|
|
|
|
FOnPinDefaultValueChanged OnPinDefaultValueChanged;
|
2014-03-14 14:13:41 -04:00
|
|
|
};
|
|
|
|
|
|