You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-143320 #rb Matt.Johnson #rb Lauren.Barnes #preflight 621642ffbd3bdd9086d72271 [CL 19090889 by Dominik Peacock in ue5-main branch]
21 lines
441 B
C++
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
|
|
};
|