mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
31 lines
986 B
C++
31 lines
986 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "CommonActivatablePanel.h"
|
|
#include "FortCollectionBookRewardModalWidget.generated.h"
|
|
|
|
class UCommonTextBlock;
|
|
class UFortMaterialProgressBar;
|
|
class UFortRewardInfoWidget;
|
|
|
|
UCLASS(Abstract, Blueprintable, EditInlineNew)
|
|
class UFortCollectionBookRewardModalWidget : public UCommonActivatablePanel {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
|
|
UCommonTextBlock* TitleWidget;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
|
|
UFortRewardInfoWidget* RewardWidget;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
|
|
UFortMaterialProgressBar* ProgressBar;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
|
|
UCommonTextBlock* ProgressTextWidget;
|
|
|
|
public:
|
|
UFortCollectionBookRewardModalWidget();
|
|
};
|
|
|