Files
UnrealEngine/Engine/Plugins/MetaHuman/MetaHumanAnimator/Source/MetaHumanIdentity/Private/MetaHumanIdentityModule.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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;
};