Files
2026-04-22 15:51:07 +02:00

20 lines
570 B
C++

#pragma once
#include "CoreMinimal.h"
#include "ERedeemCodeFailureReason.h"
#include "FortActivatablePanel.h"
#include "FortRedeemCodeBase.generated.h"
UCLASS(Abstract, Blueprintable, EditInlineNew)
class UFortRedeemCodeBase : public UFortActivatablePanel {
GENERATED_BODY()
public:
UFortRedeemCodeBase();
UFUNCTION(BlueprintCallable)
void RedeemFriendCode(const FString& FriendCode);
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
void OnRedeemFriendCodeComplete(bool bSuccess, ERedeemCodeFailureReason FailureReason);
};