24 lines
434 B
C++
24 lines
434 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "AIGraph.h"
|
|
#include "ConversationGraph.generated.h"
|
|
|
|
#define UE_API COMMONCONVERSATIONGRAPH_API
|
|
|
|
class UConversationDatabase;
|
|
|
|
UCLASS(MinimalAPI)
|
|
class UConversationGraph : public UAIGraph
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
public:
|
|
// UAIGraph interface
|
|
UE_API virtual void UpdateAsset(int32 UpdateFlags) override;
|
|
// End of UAIGraph interface
|
|
};
|
|
|
|
#undef UE_API
|