Files
UnrealEngine/Engine/Plugins/Mutable/Source/MutableRuntime/Private/MuR/MutableString.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

36 lines
487 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "MuR/MutableString.h"
namespace UE::Mutable::Private
{
String::String( const FString& InValue)
{
Value = InValue;
}
TSharedPtr<String> String::Clone() const
{
TSharedPtr<String> Result = MakeShared<String>(Value);
return Result;
}
int32 String::GetDataSize() const
{
return sizeof(String) + Value.GetAllocatedSize();
}
const FString& String::GetValue() const
{
return Value;
}
}