17 lines
295 B
C++
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) |