Files
UnrealEngineUWP/Engine/Plugins/Experimental/RenderPages/Source/RenderPagesDeveloper/Public/Graph/RenderPagesGraph.h

35 lines
771 B
C
Raw Normal View History

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "EdGraph/EdGraph.h"
#include "RenderPagesGraph.generated.h"
class URenderPagesBlueprint;
class URenderPagesGraphSchema;
class URenderPageCollection;
/**
* A UEdGraph child class for the RenderPages modules.
*
* Required in order for a RenderPageCollection to be able to have a blueprint graph.
*/
UCLASS()
class RENDERPAGESDEVELOPER_API URenderPagesGraph : public UEdGraph
{
GENERATED_BODY()
public:
/** Set up this graph. */
void Initialize(URenderPagesBlueprint* InBlueprint);
/** Sets the required values for this graph. */
virtual void PostLoad() override;
/** Returns the blueprint of this graph. */
URenderPagesBlueprint* GetBlueprint() const;
};