24 lines
456 B
C
24 lines
456 B
C
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "CoreMinimal.h"
|
||
|
|
#include "EdGraph/EdGraph.h"
|
||
|
|
#include "DialogueGraph.generated.h"
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 对话图表类
|
||
|
|
*/
|
||
|
|
UCLASS()
|
||
|
|
class DIALOGUEEDITOR_API UDialogueGraph : public UEdGraph
|
||
|
|
{
|
||
|
|
GENERATED_BODY()
|
||
|
|
|
||
|
|
public:
|
||
|
|
UDialogueGraph();
|
||
|
|
/** UEdGraph interface */
|
||
|
|
virtual void AddNode(UEdGraphNode* NodeToAdd, bool bUserAction, bool bSelectNewNode) override;
|
||
|
|
};
|