19 lines
365 B
C++
19 lines
365 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "MoverMassIntegration.h"
|
|
|
|
#define LOCTEXT_NAMESPACE "FMoverMassIntegrationModule"
|
|
|
|
void FMoverMassIntegrationModule::StartupModule()
|
|
{
|
|
|
|
}
|
|
|
|
void FMoverMassIntegrationModule::ShutdownModule()
|
|
{
|
|
|
|
}
|
|
|
|
#undef LOCTEXT_NAMESPACE
|
|
|
|
IMPLEMENT_MODULE(FMoverMassIntegrationModule, MoverMassIntegration) |