You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb benoit.gadreau #jira UE-153497 #preflight https://horde.devtools.epicgames.com/job/6294be4e2e34c2e487b13394 [CL 20434781 by Helge Mathee in ue5-main branch]
27 lines
581 B
C++
27 lines
581 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Graph/ControlRigGraph.h"
|
|
#include "DataInterfaceGraph_EdGraph.generated.h"
|
|
|
|
class UDataInterfaceGraph_EditorData;
|
|
|
|
namespace UE::DataInterfaceUncookedOnly
|
|
{
|
|
struct FUtils;
|
|
}
|
|
|
|
UCLASS(MinimalAPI)
|
|
class UDataInterfaceGraph_EdGraph : public UControlRigGraph
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
friend class UDataInterfaceGraph_EditorData;
|
|
|
|
// UControlRigGraph interface
|
|
virtual FRigVMClient* GetRigVMClient() const override;
|
|
|
|
void Initialize(UDataInterfaceGraph_EditorData* InEditorData);
|
|
}; |