Files
UnrealEngine/Engine/Plugins/Mutable/Source/CustomizableObject/Private/MuCO/CustomizableObjectIdentifier.cpp
2025-05-18 13:04:45 +08:00

14 lines
362 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "MuCO/CustomizableObjectIdentifier.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(CustomizableObjectIdentifier)
FCustomizableObjectIdPair::FCustomizableObjectIdPair(FString ObjectGroupName, FString ObjectName)
: CustomizableObjectGroupName(ObjectGroupName)
, CustomizableObjectName(ObjectName)
{
}