Files
UnrealEngine/Engine/Plugins/Experimental/MoverIntegrations/Source/MoverMassIntegration/Private/MoverMassIntegration.cpp
2025-05-18 13:04:45 +08:00

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)