Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

25 lines
524 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "ConversationNode.h"
#include "GameplayTagContainer.h"
#include "ConversationEntryPointNode.generated.h"
#define UE_API COMMONCONVERSATIONRUNTIME_API
UCLASS(MinimalAPI, meta=(DisplayName="Entry Point"))
class UConversationEntryPointNode : public UConversationNodeWithLinks
{
GENERATED_BODY()
public:
UPROPERTY(EditAnywhere, Category=Conversation)
FGameplayTag EntryTag;
UFUNCTION()
UE_API virtual FString GetIdentifier();
};
#undef UE_API