You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
30 lines
623 B
C
30 lines
623 B
C
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
|
|||
|
|
#include "CoreMinimal.h"
|
|||
|
|
|
|||
|
|
class UDataInterfaceGraph;
|
|||
|
|
class UDataInterfaceGraph_EditorData;
|
|||
|
|
class UDataInterfaceGraph_EdGraph;
|
|||
|
|
class URigVMController;
|
|||
|
|
class URigVMGraph;
|
|||
|
|
|
|||
|
|
namespace UE::DataInterfaceGraphEditor
|
|||
|
|
{
|
|||
|
|
class FGraphEditor;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
namespace UE::DataInterfaceGraphUncookedOnly
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
struct DATAINTERFACEGRAPHUNCOOKEDONLY_API FUtils
|
|||
|
|
{
|
|||
|
|
static void Compile(UDataInterfaceGraph* InGraph);
|
|||
|
|
|
|||
|
|
static UDataInterfaceGraph_EditorData* GetEditorData(const UDataInterfaceGraph* InDataInterfaceGraph);
|
|||
|
|
|
|||
|
|
static void RecreateVM(UDataInterfaceGraph* InGraph);
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
}
|