Files
UnrealEngine/Engine/Source/Developer/UndoHistory/Private/UndoHistoryModule.h
2025-05-18 13:04:45 +08:00

21 lines
441 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "IUndoHistoryModule.h"
/**
* Implements the UndoHistory module.
*/
class FUndoHistoryModule : public IUndoHistoryModule
{
public:
//~ Begin IModuleInterface Interface
virtual void StartupModule() override;
virtual void ShutdownModule() override;
virtual bool SupportsDynamicReloading() override;
//~ End IModuleInterface Interface
};