Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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