mirror of
https://github.com/johndoe6345789/ArenaFPS.git
synced 2026-04-25 22:25:26 +00:00
14 lines
349 B
C++
14 lines
349 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "LyraWidgetFactory.h"
|
|
#include "Templates/SubclassOf.h"
|
|
|
|
#include UE_INLINE_GENERATED_CPP_BY_NAME(LyraWidgetFactory)
|
|
|
|
class UUserWidget;
|
|
|
|
TSubclassOf<UUserWidget> ULyraWidgetFactory::FindWidgetClassForData_Implementation(const UObject* Data) const
|
|
{
|
|
return TSubclassOf<UUserWidget>();
|
|
}
|