16 lines
356 B
C++
16 lines
356 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "EdGraphUtilities.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class DIALOGUEEDITOR_API FDialogueGraphPanelNodeFactory: public FGraphPanelNodeFactory
|
|
{
|
|
public:
|
|
virtual TSharedPtr<class SGraphNode> CreateNode(class UEdGraphNode* Node) const override;
|
|
};
|