Files
UnrealEngine/Engine/Plugins/Experimental/MoverIntegrations/Source/MoverMassIntegration/Private/MoverMassIntegration.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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)