Files
FNGameProj/Source/FortniteUI/Public/FortTextStyleList.h
2024-01-21 00:41:14 +01:00

21 lines
526 B
C++

#pragma once
#include "CoreMinimal.h"
#include "CommonUserWidget.h"
#include "FortTextStyleList.generated.h"
class UCommonTextStyle;
UCLASS(Abstract, Blueprintable, EditInlineNew)
class UFortTextStyleList : public UCommonUserWidget {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FName TextStylesPath;
UFortTextStyleList();
UFUNCTION(BlueprintCallable, BlueprintPure)
TArray<TSoftClassPtr<UCommonTextStyle>> GetTextStyles() const;
};