DRG-Femboy-Voice/Source/FSD/Public/FSDPS4Utils.h
2025-04-15 12:39:31 -07:00

21 lines
509 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Kismet/BlueprintFunctionLibrary.h"
#include "FSDPS4Utils.generated.h"
UCLASS(Blueprintable)
class UFSDPS4Utils : public UBlueprintFunctionLibrary {
GENERATED_BODY()
public:
UFSDPS4Utils();
UFUNCTION(BlueprintCallable)
static void SetUGCAllowed(bool bAllowed);
UFUNCTION(BlueprintCallable, BlueprintPure)
static bool IsUGCAllowed();
UFUNCTION(BlueprintCallable, BlueprintPure)
static bool IsPS4SystemLoaded();
};