Files
UnrealEngine/Engine/Plugins/MetaHuman/MetaHumanAnimator/Source/MetaHumanIdentity/Private/MetaHumanIdentityModule.h
2025-05-18 13:04:45 +08:00

18 lines
373 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Modules/ModuleManager.h"
class FMetaHumanIdentityModule
: public IModuleInterface
{
public:
//~ IModuleInterface interface
virtual void StartupModule() override;
virtual void ShutdownModule() override;
private:
TSharedPtr<class FAssetTypeActions_MetaHumanIdentity> IdentityAssetActions;
};