mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
14 lines
252 B
C
14 lines
252 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ERedeemCodeFailureReason.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class ERedeemCodeFailureReason : uint8 {
|
|
InvalidCode,
|
|
CodeAlreadyUsed,
|
|
AlreadyHasAccess,
|
|
FailedToGetItem,
|
|
Unknown,
|
|
};
|
|
|