Files
UnrealEngine/Engine/Source/Developer/Horde/Private/Storage/Blob.cpp
2025-05-18 13:04:45 +08:00

14 lines
314 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "Storage/Blob.h"
#include "Storage/BlobHandle.h"
FBlob::FBlob(const FBlobType& InType, FSharedBufferView InData, TArray<FBlobHandle> InReferences)
: Type(InType)
, Data(MoveTemp(InData))
, References(MoveTemp(InReferences))
{ }
FBlob::~FBlob()
{ }