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

17 lines
295 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "ModelingUIModule.h"
#define LOCTEXT_NAMESPACE "FModelingUIModule"
void FModelingUIModule::StartupModule()
{
}
void FModelingUIModule::ShutdownModule()
{
}
#undef LOCTEXT_NAMESPACE
IMPLEMENT_MODULE(FModelingUIModule, ModelingUI)