Files
UnrealEngineUWP/Engine/Plugins/Runtime/ModelViewViewModel/Source/ModelViewViewModelBlueprint/Private/MVVMConversionFunctionGraphSchema.h
patrick boutot b187d4525a MVVM: Autocast is supported for conversion function.
#rb yohann.dossantos

[CL 34033327 by patrick boutot in ue5-main branch]
2024-05-31 11:27:14 -04:00

19 lines
356 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "EdGraphSchema_K2.h"
#include "MVVMConversionFunctionGraphSchema.generated.h"
/**
*
*/
UCLASS()
class UMVVMConversionFunctionGraphSchema : public UEdGraphSchema_K2
{
GENERATED_BODY()
public:
virtual bool TryCreateConnection(UEdGraphPin* A, UEdGraphPin* B) const override;
};