You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
23 lines
373 B
C++
23 lines
373 B
C++
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#include "UndoHistoryModule.h"
|
||
|
|
|
||
|
|
#define LOCTEXT_NAMESPACE "FUndoHistoryModule"
|
||
|
|
|
||
|
|
void FUndoHistoryModule::StartupModule()
|
||
|
|
{}
|
||
|
|
|
||
|
|
void FUndoHistoryModule::ShutdownModule()
|
||
|
|
{}
|
||
|
|
|
||
|
|
bool FUndoHistoryModule::SupportsDynamicReloading()
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
IMPLEMENT_MODULE(FUndoHistoryModule, UndoHistory);
|
||
|
|
|
||
|
|
|
||
|
|
#undef LOCTEXT_NAMESPACE
|