15 lines
353 B
C++
15 lines
353 B
C++
// Copyright 2022 Just2Devs. All Rights Reserved.
|
|
|
|
#pragma once
|
|
#include "CoreMinimal.h"
|
|
|
|
class UBlueprint;
|
|
|
|
class WIDGETFUNCTIONLIBRARYEDITOR_API FK2Node_WidgetNodeHelper
|
|
{
|
|
|
|
public:
|
|
static bool IsCompatibleWidgetGraph(const UEdGraph* TargetGraph, const bool bTimeBasedNode = false);
|
|
static bool IsBlueprintWidget(const UBlueprint* Blueprint);
|
|
};
|