mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
18 lines
447 B
C++
18 lines
447 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Kismet/BlueprintFunctionLibrary.h"
|
|
#include "FortSocialDisplayLibrary.generated.h"
|
|
|
|
class UImage;
|
|
|
|
UCLASS(Blueprintable)
|
|
class FORTNITEUI_API UFortSocialDisplayLibrary : public UBlueprintFunctionLibrary {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortSocialDisplayLibrary();
|
|
UFUNCTION(BlueprintCallable)
|
|
static void SetPlatformPrefixIcon(UImage* Image, const FString& OtherPlayerPlatform);
|
|
|
|
};
|
|
|