Files
UnrealEngine/Engine/Plugins/Mutable/Source/MutableTools/Private/MuT/NodeObjectGroup.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

39 lines
516 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "MuT/NodeObjectGroup.h"
#include "HAL/PlatformCrt.h"
#include "Misc/AssertionMacros.h"
#include "MuT/NodeLayout.h"
namespace UE::Mutable::Private
{
const FString& NodeObjectGroup::GetName() const
{
return Name;
}
void NodeObjectGroup::SetName( const FString& InName )
{
Name = InName;
}
const FString& NodeObjectGroup::GetUid() const
{
return Uid;
}
void NodeObjectGroup::SetUid( const FString& InUid )
{
Uid = InUid;
}
}