Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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()
{ }