mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
28 lines
765 B
C++
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();
|
|
|
|
};
|
|
|