You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb trivial #rnx #ROBOMERGE-SOURCE: CL 16700115 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v835-16672529) [CL 16700124 by aurel cordonnier in ue5-release-engine-test branch]
24 lines
542 B
C++
24 lines
542 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Interface.h"
|
|
#include "K2Node_ExternalGraphInterface.generated.h"
|
|
|
|
class UEdGraph;
|
|
|
|
UINTERFACE(meta=(CannotImplementInterfaceInBlueprint))
|
|
class BLUEPRINTGRAPH_API UK2Node_ExternalGraphInterface : public UInterface
|
|
{
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
class BLUEPRINTGRAPH_API IK2Node_ExternalGraphInterface
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
// Get external graphs to display for this node
|
|
virtual TArray<UEdGraph*> GetExternalGraphs() const = 0;
|
|
}; |