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

16 lines
396 B
C++

#pragma once
#include "CoreMinimal.h"
#include "FortItemQuantityPair.h"
#include "FortSelectableRewardOption.generated.h"
USTRUCT(BlueprintType)
struct FORTNITEGAME_API FFortSelectableRewardOption {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TArray<FFortItemQuantityPair> Rewards;
FFortSelectableRewardOption();
};