Files
UnrealEngine/Engine/Source/Editor/BlueprintGraph/Classes/K2Node_ExternalGraphInterface.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

25 lines
517 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(MinimalAPI, meta=(CannotImplementInterfaceInBlueprint))
class UK2Node_ExternalGraphInterface : public UInterface
{
GENERATED_BODY()
};
class IK2Node_ExternalGraphInterface
{
GENERATED_BODY()
public:
// Get external graphs to display for this node
virtual TArray<UEdGraph*> GetExternalGraphs() const = 0;
};