13 lines
300 B
C++
13 lines
300 B
C++
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
||
|
|
|
||
|
|
#include "DialogueGraph.h"
|
||
|
|
|
||
|
|
UDialogueGraph::UDialogueGraph()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
void UDialogueGraph::AddNode(UEdGraphNode* NodeToAdd, bool bUserAction, bool bSelectNewNode)
|
||
|
|
{
|
||
|
|
Super::AddNode(NodeToAdd, bUserAction, bSelectNewNode);
|
||
|
|
}
|