20 lines
411 B
C++
20 lines
411 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "SGraphPin.h"
|
|
|
|
class SStateMachineInputPin : public SGraphPin
|
|
{
|
|
public:
|
|
SLATE_BEGIN_ARGS(SStateMachineInputPin){}
|
|
SLATE_END_ARGS()
|
|
|
|
void Construct(const FArguments& InArgs, UEdGraphPin* InPin);
|
|
protected:
|
|
// Begin SGraphPin interface
|
|
virtual TSharedRef<SWidget> GetDefaultValueWidget() override;
|
|
// End SGraphPin interface
|
|
};
|
|
|