mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 19:24:04 +00:00
27 lines
818 B
C++
27 lines
818 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortCollectionBookGenericRewardWidget.h"
|
|
#include "FortCollectionBookProgressionRewardWidget.generated.h"
|
|
|
|
class UCommonNumericTextBlock;
|
|
class UCommonTextBlock;
|
|
|
|
UCLASS(Abstract, Blueprintable, EditInlineNew)
|
|
class UFortCollectionBookProgressionRewardWidget : public UFortCollectionBookGenericRewardWidget {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
|
|
UCommonNumericTextBlock* LevelTextWidget;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
|
|
UCommonTextBlock* DisplayNameWidget;
|
|
|
|
public:
|
|
UFortCollectionBookProgressionRewardWidget();
|
|
UFUNCTION(BlueprintCallable)
|
|
void SetAssociatedLevel(int32 Level);
|
|
|
|
};
|
|
|