mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
20 lines
570 B
C++
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);
|
|
|
|
};
|
|
|