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

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