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

21 lines
488 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "ConversationGraphNode.h"
#include "ConversationGraphNode_EntryPoint.generated.h"
#define UE_API COMMONCONVERSATIONGRAPH_API
/** Root node of this conversation block */
UCLASS(MinimalAPI)
class UConversationGraphNode_EntryPoint : public UConversationGraphNode
{
GENERATED_UCLASS_BODY()
UE_API virtual void AllocateDefaultPins() override;
UE_API virtual FName GetNameIcon() const override;
};
#undef UE_API