Files
UnrealEngineUWP/Engine/Source/Editor/BlueprintGraph/Classes/K2Node_ExternalGraphInterface.h

24 lines
542 B
C
Raw Normal View History

// 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;
};