Files
UnrealEngineUWP/Engine/Source/Editor/BlueprintGraph/Public/BlueprintGraphPanelPinFactory.h
Joe Conley 413f955c2c DataTable/CurveTable Blueprint nodes: Drop down box for selecting row name
Remove requirement for blueprint node name pins to be non-numeric values (this requirement seems to no longer be present in other areas of the engine)

Modified SGraphPinNameList to use new SNameComboBox class

[CL 2266949 by Joe Conley in Main branch]
2014-08-21 23:21:25 -04:00

11 lines
287 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "EdGraphUtilities.h"
class BLUEPRINTGRAPH_API FBlueprintGraphPanelPinFactory: public FGraphPanelPinFactory
{
virtual TSharedPtr<class SGraphPin> CreatePin(class UEdGraphPin* InPin) const override;
};