Files
UnrealEngineUWP/Engine/Plugins/Experimental/RenderPages/Source/RenderPagesDeveloper/Public/Graph/RenderPagesGraph.h
Patrick Vane dc161aa173 First usable version of the render pages plugin.
#preflight 62a2981eff22b2aef9d1d325

[CL 20589277 by Patrick Vane in ue5-main branch]
2022-06-09 21:57:02 -04:00

35 lines
771 B
C++

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