19 lines
442 B
C++
19 lines
442 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "ClothingSystemRuntimeInterfaceModule.h"
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
IMPLEMENT_MODULE(FClothingSystemRuntimeInterfaceModule, ClothingSystemRuntimeInterface);
|
|
|
|
FClothingSystemRuntimeInterfaceModule::FClothingSystemRuntimeInterfaceModule()
|
|
{
|
|
}
|
|
|
|
void FClothingSystemRuntimeInterfaceModule::StartupModule()
|
|
{
|
|
}
|
|
|
|
void FClothingSystemRuntimeInterfaceModule::ShutdownModule()
|
|
{
|
|
}
|