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

19 lines
323 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Modules/ModuleInterface.h"
class FClothingSystemRuntimeInterfaceModule : public IModuleInterface
{
public:
FClothingSystemRuntimeInterfaceModule();
virtual void StartupModule() override;
virtual void ShutdownModule() override;
private:
};