18 lines
430 B
C++
Executable file
18 lines
430 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Kismet/BlueprintFunctionLibrary.h"
|
|
#include "FSDPFPUtils.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class UFSDPFPUtils : public UBlueprintFunctionLibrary {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFSDPFPUtils();
|
|
UFUNCTION(BlueprintCallable, BlueprintPure)
|
|
static bool IsPlayfabLoaded();
|
|
|
|
UFUNCTION(BlueprintCallable, BlueprintPure)
|
|
static FString GetPlayfabUserId();
|
|
|
|
};
|
|
|