You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
21 lines
621 B
C++
21 lines
621 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "ConversationGraphNode_EntryPoint.h"
|
|
#include "UObject/UObjectIterator.h"
|
|
#include "ConversationGraphTypes.h"
|
|
#include "ConversationGraph.h"
|
|
|
|
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");
|
|
}
|