Files
UnrealEngine/Engine/Source/Editor/UnrealEd/Private/MaterialGraphNode_Operator.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

17 lines
506 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "MaterialGraph/MaterialGraphNode_Operator.h"
#include "MaterialEditor/MaterialNodes/SGraphNodeMaterialOperator.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(MaterialGraphNode_Operator)
UMaterialGraphNode_Operator::UMaterialGraphNode_Operator(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
}
TSharedPtr<SGraphNode> UMaterialGraphNode_Operator::CreateVisualWidget()
{
return SNew(SGraphNodeMaterialOperator, this);
}