mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
28 lines
874 B
C++
28 lines
874 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortChallengeSetStyle.h"
|
|
#include "AthenaChallengeListEntryBase.h"
|
|
#include "AthenaChallengeTreeEntry_ChallengeSet.generated.h"
|
|
|
|
class UCommonTextBlock;
|
|
|
|
UCLASS(Abstract, Blueprintable, EditInlineNew)
|
|
class UAthenaChallengeTreeEntry_ChallengeSet : public UAthenaChallengeListEntryBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
private:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
|
|
UCommonTextBlock* Text_ChallengeSetName;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
|
|
UCommonTextBlock* Text_ChallengeSetContext;
|
|
|
|
public:
|
|
UAthenaChallengeTreeEntry_ChallengeSet();
|
|
protected:
|
|
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
|
|
void OnChallengeSetEstablished(const FFortChallengeSetStyle& DisplayStyle);
|
|
|
|
};
|
|
|