Files
Dominik Peacock 37305aef15 Make dependencyy from UndoHistory to UnrealEd optional
#jira UE-143320
#rb Matt.Johnson
#rb Lauren.Barnes
#preflight 621642ffbd3bdd9086d72271

[CL 19090889 by Dominik Peacock in ue5-main branch]
2022-02-23 09:45:34 -05: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
};