mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
20 lines
380 B
C
20 lines
380 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EOfferPurchaseError.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EOfferPurchaseError : uint8 {
|
|
NoError,
|
|
PendingServerConfirmation,
|
|
CannotAffordItem,
|
|
InvalidOfferID,
|
|
InvalidPriceIndex,
|
|
NoneLeft,
|
|
PurchaseAlreadyPending,
|
|
NoConnection,
|
|
AccountNotEligible,
|
|
CannotGiftItem,
|
|
MFANotEnabled,
|
|
};
|
|
|