Files
UnrealEngine/Engine/Plugins/Experimental/CommonConversation/Source/CommonConversationGraph/Private/ConversationGraphNode_EntryPoint.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

22 lines
630 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "ConversationGraphNode_EntryPoint.h"
#include "ConversationGraphTypes.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(ConversationGraphNode_EntryPoint)
UConversationGraphNode_EntryPoint::UConversationGraphNode_EntryPoint(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer)
{
}
void UConversationGraphNode_EntryPoint::AllocateDefaultPins()
{
CreatePin(EGPD_Output, UConversationGraphTypes::PinCategory_MultipleNodes, TEXT("Out"));
}
FName UConversationGraphNode_EntryPoint::GetNameIcon() const
{
return FName("BTEditor.Graph.BTNode.Root.Icon");
}