Files
UnrealEngine/Engine/Source/Runtime/ClothingSystemRuntimeInterface/Private/ClothingSystemRuntimeInterfaceModule.cpp
2025-05-18 13:04:45 +08:00

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()
{
}