21 lines
488 B
C++
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
|