You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-89380 #rb none #ROBOMERGE-SOURCE: CL 11608922 via CL 11608931 via CL 11608941 #ROBOMERGE-BOT: (v656-11643781) [CL 11758588 by rex hill in Main branch]
20 lines
316 B
C++
20 lines
316 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#include "MaterialEditorContext.generated.h"
|
|
|
|
class IMaterialEditor;
|
|
|
|
UCLASS()
|
|
class MATERIALEDITOR_API UMaterialEditorMenuContext : public UObject
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
|
|
TWeakPtr<IMaterialEditor> MaterialEditor;
|
|
};
|