File size: 580 Bytes
7fd553e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | // Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "UObject/Object.h"
#include "LyraWidgetFactory.generated.h"
#define UE_API LYRAGAME_API
template <class TClass> class TSubclassOf;
class UUserWidget;
struct FFrame;
UCLASS(MinimalAPI, Abstract, Blueprintable, BlueprintType, EditInlineNew)
class ULyraWidgetFactory : public UObject
{
GENERATED_BODY()
public:
ULyraWidgetFactory() { }
UFUNCTION(BlueprintNativeEvent)
UE_API TSubclassOf<UUserWidget> FindWidgetClassForData(const UObject* Data) const;
};
#undef UE_API
|