Files
UnrealEngine/Engine/Source/Editor/UnrealEd/Public/DragAndDrop/ExternalContentDragDropOp.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

21 lines
470 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "DragAndDrop/AssetDragDropOp.h"
#include "Misc/Guid.h"
class FExternalContentDragDropOp : public FAssetDragDropOp
{
public:
DRAG_DROP_OPERATOR_TYPE(FExternalContentDragDropOp, FAssetDragDropOp)
FExternalContentDragDropOp() : Guid(FGuid::NewGuid()) {}
virtual ~FExternalContentDragDropOp() {}
const FGuid& GetGuid() const { return Guid; }
private:
FGuid Guid;
};