Files
UnrealEngine/Engine/Plugins/Experimental/CommonConversation/Source/CommonConversationGraph/Public/CommonConversationGraphModule.h
2025-05-18 13:04:45 +08:00

26 lines
634 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Logging/LogMacros.h"
#include "Modules/ModuleInterface.h"
class FObjectPreSaveContext;
class UObject;
class UPackage;
COMMONCONVERSATIONGRAPH_API DECLARE_LOG_CATEGORY_EXTERN(LogCommonConversationGraph, Display, All);
class FCommonConversationGraphModule : public IModuleInterface
{
public:
/** IModuleInterface implementation */
virtual void StartupModule() override;
virtual void ShutdownModule() override;
private:
void HandlePreSavePackage(UPackage* Package, FObjectPreSaveContext ObjectSaveContext);
void HandleBeginPIE(bool bIsSimulating);
};