16 lines
365 B
C++
16 lines
365 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "DialogueGraphPanelNodeFactory.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class DIALOGUEEDITOR_API FDialogueGraphPanelPinFactory: public FGraphPanelPinFactory
|
|
{
|
|
public:
|
|
virtual TSharedPtr<class SGraphPin> CreatePin(class UEdGraphPin* InPin) const override;
|
|
};
|