Files
UnrealEngine/Engine/Plugins/MetaHuman/MetaHumanAnimator/Source/MetaHumanIdentity/Private/MetaHumanIdentityModule.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

20 lines
479 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "MetaHumanIdentityModule.h"
#include "MetaHumanIdentityStyle.h"
void FMetaHumanIdentityModule::StartupModule()
{
// Register the style used for the Identity editors
FMetaHumanIdentityStyle::Register();
}
void FMetaHumanIdentityModule::ShutdownModule()
{
// Unregister the styles used by the Identity module
FMetaHumanIdentityStyle::Unregister();
}
IMPLEMENT_MODULE(FMetaHumanIdentityModule, MetaHumanIdentity)