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

28 lines
765 B
C++

#pragma once
#include "CoreMinimal.h"
#include "CommonButton.h"
#include "EFriendLinkShareButtonType.h"
#include "FortSocialPanelView_FriendLinkButton.generated.h"
class UCommonBorder;
UCLASS(Blueprintable, EditInlineNew)
class UFortSocialPanelView_FriendLinkButton : public UCommonButton {
GENERATED_BODY()
public:
private:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
UCommonBorder* Border_ScreenTarget;
public:
UFortSocialPanelView_FriendLinkButton();
protected:
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
void OnShareButtonTypeSet(EFriendLinkShareButtonType Type);
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
void OnCopiedToClipboard();
};