13 lines
300 B
C++
Raw Normal View History

2025-11-17 15:11:34 +08:00
// 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);
}