You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
26 lines
675 B
C
26 lines
675 B
C
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "CoreMinimal.h"
|
||
|
|
#include "UObject/ObjectMacros.h"
|
||
|
|
#include "MaterialGraph/MaterialGraph.h"
|
||
|
|
#include "MaterialGraph/MaterialGraphNode.h"
|
||
|
|
|
||
|
|
#include "MaterialGraphNode_PinBase.generated.h"
|
||
|
|
|
||
|
|
UCLASS(MinimalAPI)
|
||
|
|
class UMaterialGraphNode_PinBase : public UMaterialGraphNode
|
||
|
|
{
|
||
|
|
GENERATED_BODY()
|
||
|
|
|
||
|
|
//~ Begin UMaterialGraphNode Interface
|
||
|
|
UNREALED_API virtual void PostCopyNode() override;
|
||
|
|
//~ End UMaterialGraphNode Interface
|
||
|
|
|
||
|
|
//~ Begin UEdGraphNode Interface.
|
||
|
|
virtual void PrepareForCopying() override;
|
||
|
|
virtual bool CanDuplicateNode() const override { return false; }
|
||
|
|
//~ End UEdGraphNode Interface.
|
||
|
|
};
|