21 lines
372 B
C++
21 lines
372 B
C++
// Georgy Treshchev 2024.
|
|
|
|
#include "RuntimeArchiver.h"
|
|
#include "RuntimeArchiverDefines.h"
|
|
|
|
#define LOCTEXT_NAMESPACE "FRuntimeArchiverModule"
|
|
|
|
void FRuntimeArchiverModule::StartupModule()
|
|
{
|
|
}
|
|
|
|
void FRuntimeArchiverModule::ShutdownModule()
|
|
{
|
|
}
|
|
|
|
#undef LOCTEXT_NAMESPACE
|
|
|
|
IMPLEMENT_MODULE(FRuntimeArchiverModule, RuntimeArchiver)
|
|
|
|
DEFINE_LOG_CATEGORY(LogRuntimeArchiver);
|