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

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