Files
UnrealEngineUWP/Engine/Source/Editor/ContentBrowser/Private/ContentBrowserPathViewMenuContexts.h
andrea botti 3487208558 [ContentBrowser] Impossible to save asset in Engine / Plugins / Developers folder in the asset picker dialog
#rb aditya.ravichandran
#jira UE-194988

[CL 32928091 by andrea botti in ue5-main branch]
2024-04-12 09:47:28 -04:00

25 lines
467 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Templates/SharedPointer.h"
#include "UObject/NameTypes.h"
#include "UObject/Object.h"
#include "ContentBrowserPathViewMenuContexts.generated.h"
class SPathView;
/**
* Context for the PathView setting combo button
*/
UCLASS()
class UContentBrowserPathViewContextMenuContext : public UObject
{
GENERATED_BODY()
public:
FName OwningContentBrowserName;
TWeakPtr<SPathView> PathView;
};